

.open-sans-normal{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}



/* Nav styles */
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 200px;
}


.nav-title{
    font-weight: 800px;
    font-size: 45px;
}
/* shared style of r */
.text-center{
    text-align: center;
}
.secondary-bg{
    background-color: #fff8f3;
}
.unique{
    color: #fd6e0a;
}
nav ul{
    display: flex;
    align-items: center;
}
nav ul li{
    list-style: none;

}
nav li a{
    text-decoration: none;
    font-size: 20px;
    margin-right: 51px;
}
/* header */
.header{
    background-image: url('../images/developer.png'), url('../images/header_bg.png');
    background-repeat: no-repeat;
    background-position: top left, bottom right;
}
/* banner styles */
.banner{
    display: flex;
    justify-content: space-between;
    margin: 0px 35px 0px 230px;
}
.banner-content{
    width: 585px;
    height: 356px;
}
.banner-greeting{
    font-size: 45px;
    font-weight: 600;
}
.banner-title{
    font-size: 85px;
    font-weight: bold;
    color: rgb(18, 18, 18);
}
.banner-description{
    font-size: 18px;
    color: rgb(75, 75, 75);
}
.banner-profile-pic{
    width: 584px;
    height: 676px;
}

.dark-2{
    color: rgb(71, 71, 71);
}
.btn-primary{
    background-color: rgb(253, 110, 10);
     color: rgb(255, 255, 255);
     font-weight: bold;
     padding: 18px 35px;
     border-radius: 5px;
     font-size: 20px; border: none;
    
}
.section-title{
    font-size: 35px;
    font-weight: bold;
    color: rgb(18, 18, 18);
   
}
.section-description{
    font-size: 18;
    color: rgb(117, 117, 117);
    
    
   
    
}
/* main styles */
main{
    max-width: 1140px;
    margin: 0 auto;
}
/* about styles */
main section{
    margin-top: 130px;
    margin-bottom: 130px;
}
.about{
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
    
}
.about-border{
    background-color: rgb(255, 255, 255);
    width: 827px;
    height: 288px;
    
}
.about-items{
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
   
    
}
.item-description{
    font-size: 20px;
    font-weight: bold;
    color: rgb(47, 47, 47);
    margin-top: 0;
   
}
.item-title{
    font-size: 20px;
    color: rgb(117, 117, 117);
    
    
   
}
/* skills styles */
.skills-container{
    display: flex;
    margin-top: 50px;
    gap: 24px;
}
.skill{
    padding: 33px;
    box-shadow:0px 6px 50px 0px rgba(0, 0, 0, 6%);
    border-radius: 5px;
}
.skill-title{
    font-size: 20px;
    font-weight: bold;
    color: rgb(18, 18, 18);
}
.skill-description{
    font-size: 16px;
    color: rgba(75, 75, 75, 80%);
}
/* resume styles */
.section-title{
    font-size: 35px;
    font-weight: bold;
    color: rgb(18, 18, 18);
    margin-bottom: 30px;
}
.section-description{
    font-size: 18;
    color: rgba(75, 75, 75, 80%);
}
.resume-container{
    display: flex;
    gap: 24px;
}
.resume-column{
    text-align: left;
    
}
.resume-column-title{
    font-size: 30px;
    font-weight: bold;
    color: rgb(47, 47, 47);
    
}
.experience-title{
    font-size: 25px;
    font-weight: bold;
    color: rgb(47, 47, 47);
    
    
}
.experience-subtitle{
    font-size: 20px;
    font-weight: 600px;
    color: rgba(75, 75, 75, 80%);
}
.experience-description{
    font-size: 16px;
    color: rgba(75, 75, 75, 80%);
}
/* download button */
.download-button{
    margin-top: 50px;
    border-radius: mixed;
    
}
/* footer-style */
footer{
    padding: 130px 230px;
    display: flex;
    gap: 100px;
    
}

.footer-column{
    width: 50%;
}
.font-management{
    font-size: 16px;
    color: rgb(47, 47, 47);
}
footer input[type="text"], footer input[type="email"], footer textarea[placeholder="Message"]{
    height: 64px;
    border-radius: 5px;
    background-color: white;
    color: rgb(75, 75, 75);
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    margin-bottom: 40px;
    border: none;
}

/* responsive media query */
@media screen and (max-width:576px){

    
    
    .skills-container{
       flex-direction: column; 
    }
    .resume-container, footer, .about-items, .banner, nav, nav ul{

        flex-direction: column;
    }
    footer, .about{
        padding: 20px;

    }
    .header{
        background-image: none;
    }
    .banner{
        margin: 10px;
    }
    .footer-column{
        width: 100%;
        
    }

    footer input[type="text"], footer input[type="email"], footer textarea{
        width: calc(100% - 40px);
    }
    .banner-profile-pic{
        width: 100%;
    }
    nav ul{
        gap: 10px;
    }
    .button-primary{
        margin-bottom: 10px;
    }
}
