*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: #F7F3E3;
    /*background-color: rgba(10, 10, 44, 0.795); Dark mode*/
}
header{
    min-height: 100vh;
    background-color: #F7F3E3;
    margin-bottom: 6em;
}
.nav{
    background-color: #F7F3E3;
    top: 0;
    width: 100%;
    position: fixed;
    box-shadow: 2px 2px 5px #af72e9;
    z-index: 999;
}
.nav__center{
    padding: 1em;
}
.nav__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8a2be2;
}
.logo{
    font-size: 3rem;
}
.nav__toggle{
    font-size: 1.3rem;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}
.nav__toggle .close__toggle{
    display: none;
}
.links{
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: 0.3s linear;
}

.links a{
    font-size: 1.3rem;
    font-weight: 500;
    color: #8a2be2;
    display: block;
    margin-bottom: 2em;
}
.links a:hover{
    opacity: 0.7;
}
.active{
    margin-top: 3em;
}
.show__nav-items .open__toggle{
    display: none;
}
.show__nav-items .close__toggle{
    display: inline;
}
.show__nav-items .links{
    height: 100vh
}

/* Banner Section*/
.banner__area{
    padding: 6em 1em 0em;
}
.banner__info{
    margin-bottom: 4em;
}
.banner__area h1{
    color: #8a2be2;
    font-weight: 900;
    margin-bottom: 0.2em;

}
.banner__area .h1__low, .projects__page .h1__low{
    color: #b076e6;
}
.banner__area .info__start{
    margin: 0em 0em 1em;
    font-weight: 600;
    color: rgb(0, 0, 0, 0.8);
}
.banner__area .info__end{
    line-height: 1.4;
    font-weight: 600;
    margin: 1em 0em 4em;
    color: rgba(0, 0,0, 0.8);
}
.banner__btn{
    border: 2px solid #8a2be2;
    color: #8a2be2;
    padding: 0.7em 1em;
    font-weight: 600;
    transition: 0.3s linear;
}
.banner__btn:hover{
    background-color: #8a2be2;
    color: white;
}
.banner__img-outer{
    width: 300px;
    margin: 0 auto;
}
.banner__img{
    width: 100%;
}

/*About Section*/
.about__page{
    padding: 0em 1em;
    margin-bottom: 6em;
}
.about__info h1{
    color: #8a2be2;
}
.stretch{
    height: 0.25rem;
    width: 5rem;
    background: #af72e9;
    margin-bottom: 2em;
}
.about__info p{
    font-weight: 600;
    color: rgba(0, 0,0,0.8);
    line-height: 1.4;
}
.highlight{
    color: #8a2be2;
}
.about__img-outer{
    width: 300px;
    margin: 0 auto;
}
.about__img{
    width: 100%;
}
.technologies__used,.technologies__used-two{
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}
.technologies__used-two{
    margin-bottom: 4em;
}

/*Projects page*/
.projects__page{
    height: 50vh;
    padding: 0em 1em;
    margin-bottom: 6em;
}
.projects__page .projects__heading{
    color: #8a2be2;
}
.projects__page .h1__low{
    text-align: center;
    padding: 2em 0em;
    font-weight: 900;
    animation: rotate 3s linear infinite;
    z-index: -999;
}
@keyframes rotate {
    from {
        transform: rotateX(0deg);
    }

    to {
        transform: rotateX(359deg);
    }
}
.projects__page .h1__low:hover{
    cursor: pointer;
    color: #8a2be2;
}
/*Form*/
.contact__page{
    padding: 0em 2em 3em;
}
.contact__form{
    text-align: center;
}
.contact__heading{
    color: #8a2be2;
}
input{
    border-style: none;
    border-bottom: 1px solid #af72e9;
    background-color: transparent;
    margin-bottom: 1em;
    width: 15rem;
}
textarea{
    background-color: transparent;
    border: 1px solid #8a2be2;
    margin: 1em 0em;
}
.form__btn{
    border: 2px solid #8a2be2;
    color: #8a2be2;
    display: inline-block;
    padding: 0.7em 1em;
    font-weight: 600;
    transition: 0.3s linear;
}
.form__btn:hover{
    background-color: #8a2be2;
    color: white;
}





/*Tablet Version*/
@media(min-width:768px){
    .nav__toggle{
        display: none;
    }
    .links{
        height: auto;
        display: flex;
        margin-top: 0em;
    }
    .links a{
        display: inline;
        margin-left: 1em;
        font-size: 1.125rem;
    }
    .nav__center{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1em 2em;
    }
    .links a{
        font-size: 1rem;
    }
    .banner__area{
        padding: 6em 2em 0em;
    }
    .banner__area .info__start{
        font-size: 1rem;
    }
    .banner__area h1{
        font-size: 2.8rem;
    }
    .banner__area .info__end{
        font-size: 1rem;
        width: 80%;
    }
    .banner__area .banner__btn{
        padding: 1em 1.5em;
    }
    .banner__img{
        width: 100%;
    }
    .banner__img-outer{
        width: 500px;
        margin: 0 auto;
    }
    .about__page{
        padding: 0em 2em;
    }
    .about__img-outer{
        width: 500px;
    }
    .projects__page{
        padding: 0em 2em;
    }
    .projects__page .h1__low{
        padding: 1em;
        font-size: 3rem;
    }
}

/*Laptop Version*/
@media(min-width:1024px){
    .nav__center{
        padding: 2em;
    }
    .links a{
        font-size: 1.125rem;
        margin-left: 2.3em;
    }
    .banner__area{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10em 2em 0em;
    }
    .banner__area h1{
        font-size: 3rem;
    }
    .banner__info{
        width: 70%;
    }
    .banner__img-outer{
        width: 600px;
    }
    .about__page{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding : 0em 2em;
    }
    .about__info{
        width: 50%;
    }
    .about__img-outer{
        width: 600px;
    }
}

/*Desktop Version*/
@media(min-width:1440px){
    .nav__center{
        max-width: 1800px;
        margin: 0 auto;
        padding: 2em 7.5em;
    }
    .links a{
        margin-left: 2em;
    }
    .banner__area{
        max-width: 1800px;
        margin: 0 auto;
        padding: 12em 7.5em 0em;
    }
    .banner__info{
        width: 60%;
    }
    .banner__area h1{
        font-size: 4rem;
    }
    .banner__area .info__start, .banner__area .info__end{
        font-size: 1.3rem;
    }
    .banner__btn{
        padding: 1.5em 2em;
        font-size: 1.3rem;
    }
    .about__page{
        max-width: 1800px;
        margin: 0 auto;
        padding: 0em 7.5em;
    }
    .about__info h1{
        font-size: 2.8rem;
    }
    .about__info p{
        font-size: 1.3rem;
        font-weight: 600;
    }
    .projects__page{
        max-width: 1800px;
        margin: 0 auto;
        padding: 7.5em;
    }
    .projects__page .projects__heading{
        font-size: 2.8rem;
    }
    .contact__page{
        max-width: 1800px;
        margin: 0 auto;
        padding: 0em 7.5em;
    }
    .contact__heading{
        font-size: 2.8rem;
    }
}