
*{
    margin: 0;
    padding: 0;
    font-family: Lato, sans-serif;
}

#navbar{
    display: flex;
    height: 8vh;
    background-color:#173642;
    justify-content: space-between;
    align-items: center;
    padding: 0 3em 0 3em;
    position: sticky;
    top: 0px;
    z-index: 1;
}

#navbar-menu{
    display: none;
}

#navbar-logo h4{
    color: aliceblue;
    font-size: 1.5em;
}

#navbar-logo{
    flex: 1;
}

#navbar-links a{
    font-size: 1.5em;
    margin: .5em;
    color: aliceblue;
    text-decoration: none;
    /* font-family: "lato", sans-serif; */
}

#banner{
    background-color: #173642;
    height: 80vh; 
    padding: 10em 0 0 2.7em;
}

#banner-wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    /* flex-direction: row; */
    justify-content: space-evenly;
}


#banner h1{
    font-size: 4em;
    color: #EADDD5;
}

#banner h3{
    font-size: 1.5em;
}

#banner-left{
    margin-top: 100px;
}


#banner-left h3{
    margin-bottom: 10px;
    color: #EADDD5;
}

#banner-right img{
    border-radius: 50%;
    width: 300px;
    border: 10px solid skyblue;
    box-shadow: rgba(6, 204, 215, 0.729) 0px 22px 70px 4px;
}


#banner-button{
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    padding: 4px;
    color: black;
    text-decoration: none;
    background-color: #fff;
    margin-top: 20px;
}

#aboutme{
    background-color: #173642;
    padding: 5em 1.5em 5em 1.5em;
    height: 80vh;
}

#aboutme h3{
    text-align: center;
    font-size: 2.5em;
    color: aliceblue;
}

#aboutme-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10em;
    width: 70%;
    margin: auto;
}

#aboutme-photo{
    padding: 0 0 0 150px;
}

#aboutme-photo img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

#bio{
    /* flex: 3; */
    padding-left: 0;
}

#bio{
    width: 600px;
    padding-left: 50px;
}

#bio h4{
    font-size: 2em;
    color: #EADDD5;
}

#bio p{
    font-size: 1.5em;
    color: #EADDD5;
}

#skills{
    height: 80vh;
    padding: 5em 10em 5em 10em;
    background-color:#173642;
}


#skills h2{
    text-align: center;
    font-size: 2.5em;
    margin: 0 0 40px 0;
    color: aliceblue;
}

#skills-box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    justify-content: center;
    width: 60%;
    margin: auto;
}


.box{
    /* border: 5px solid lightblue; */
    width: 200px;
    /* height: 200px; */
    margin: auto;
    text-align: center;
    background-color: aliceblue;
    border-radius: 10px;

}

.box img{
    width: 100px;
    height: 100px;
}

.box p{
    font-size: 1.5em;
    padding-top: 10px;
}

#project-section{
    height: 100%;
    text-align: center;
    padding: 7em 0 5em 0;
    background-color: #173642;
}

#project-section > h2{
    padding-bottom: 1em;
    color: aliceblue;
}

#project{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
    width: 60%;
    margin: auto;
    gap: 40px;
}

.live-project{
    width: 400px;
    border: 2px solid gray;
    background-color: #fff;
}

.live-project img{
    width: 90%;
}

#contact-me{
    text-align: center;
    background-color: #173642;
    padding: 50px 0 50px 0;
}

#contact-me h1{
    color: aliceblue;
}

#fixbtn{
    position: fixed;
    bottom: 50px;
    right: 50px;
    /* width: 50px; */
}

#upArrow img{
    width: 50px;
    height: 50px;
    border: 2px solid white;
    padding: 5px;
    border-radius: 10px;
}

#email a{
    text-decoration: none;
    color: #E0EDF0;
}

#linkedin a{
    text-decoration: none;
    color: #E0EDF0;
}

#github a{
    text-decoration: none;
    color: #E0EDF0;
}

#Phone-no span{
    color: #E0EDF0;
}

/* xl screen */

/* @media screen and (max-width:1200px){
    #navbar-links{
        font-size: 1em;
    }
} */

/* large screen */

@media screen and (max-width:1024px){
    #navbar-links a{
        font-size: 1.2em;
    }
    #banner{
        background-color: gray;
    }
} 

/* medium screen */

@media screen and (max-width:768px){
    #navbar-links a{
        font-size: 1em;
    }
    #banner{
        background-color: blue;
    }
}

/* small screen */

@media screen and (max-width: 640px) {
    #navbar-links a{
        display: none;
    }
    #navbar-menu{
        display: block;
    }
    #banner{
        background-color: red;
    }
}