@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@1,600&display=swap');
*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    background: #edeef0;
}
nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 10px;
}
nav ul li{
    margin: 0 20px;
}
.logo-text{
    font-size: 3em;
    font-weight: 700;
    color: #f05136;
}
.nav-link{
    font-size: 1.8em;
    text-decoration: none;
    color: black;
    cursor: pointer;
}
#home{
    background: black;
    color: white;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header div p{
    font-size: 2.5em;
    font-weight: 200;
}
h1,h3,h4{
    font-weight: 700;
}
h2{
    font-weight: 500;
}
h1{
font-size: 5em;
}
h2{
font-size: 4em;
}
h3{
font-size: 2.5em;
}
h4{
    font-size: 1.8em;
}
h5 a{
    text-decoration: none;
    font-size: 1.8em;
    cursor: pointer;
    color: black;
}
h5 a:hover{
    color: #f05136;

}
h5{
    font-size: 1em;
}
.link-btn{
    text-decoration: none;
    text-align: center;
    background:#f05136;
    cursor: pointer;
    font-weight: 100;
    letter-spacing: 0.5px;
    color: white;
    font-size: 1.8em;
    padding: 10px;
    border-radius: 5%;
    border-color: black;

}
.link-btn:hover{
    color: white;
}
#bio{
    display: flex;
    align-items: center;
}
#bio article *{
    margin: 20px;
}
.break{
    display: block;
}
#bio img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 100px;
}
 p{
    font-size: 1.5em;
}
#portfolio{
    background: url("https://i1.faceprep.in/ProGrad/portfolio-background.svg");
    background-color: black;
    color: white;
    
    
}
#portfolio,#skills{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}
#skills-container{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
#skills ul{
    list-style: none;
}
#skills ul li{
    margin: 10px 0;
}
#skills-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#portfolio h3,p,hr{
    margin-bottom: 20px;
}
#portfolio div{
    display: flex;
    justify-content: space-around;
    height: 200px;
    width: 100%;
    /* width: 250px; */
}

hr{
    width: 400px;
}
#portfolio div article{
    background: white;
    color: black;
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    border-radius: 10px;
}
#portfolio div article p{
    padding: 0 5px;
}
progress[value]{
    height: 10px;
    width: 350px;
    -webkit-appearance: none;
}
progress[value]:::-webkit-progress-bar{
    background-color: grey;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25,inset);
}
::-webkit-progress-value{
    background-color: #f05136;
}
#skills ul{
    font-size: 1.5em;
}
#contact{
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;

}
.input{
    line-height: 2em;
    width: 350px;
    border-radius: 3px;
    border-color: black;
    margin: 20px 0;
}
#contact form input:last-child{
    margin-top: 30px;
}
#contact form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media(max-width: 768px ){
    nav ul{
        flex-direction: column;
    }
    nav ul li{
        margin: 10px 0;
    }
    #home{
        text-align: center;
    }
    #bio{
        flex-direction: column;
    }
    #bio article{
        margin-bottom: 30px;
    }
    #bio img{
        margin: 40px;
    }
    
    #portfolio div{
        flex-direction: column;
        height: 600px;
    }
    #portfolio div article{
        flex-grow: 1;
        width: 100%;
        margin: 10px;

    }
    #skills-container{
        flex-direction: column;
    }
    #skills div{
        margin: 10px 0;
    }
}
/* 
logo text
nav link
small header text
larger header text h1
bio heading h2
portfolio,skills,contact h3
h4 tag
regular text
*/