
.open-sans-normal{
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/* shared styles */
.text-primary{
    color: #FD6E0A;
}
.dark-1{
    color: #181818;
}
.dark-2{
    color: #474747;
}
.dark-3{
    color: #757575;
}
.btn-primary{
    background-color: #FD6E0A;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 18px 35px;
    border-radius: 5px;
    border: none;
    margin-right: 15px;
}
.secondary-background{
    background-color: #FFF8F3;
}
/* header styles */
.header{
    background-image: url(../images/developer.png), url(../images/header_bg.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    margin-bottom: 30px;
}
/* nav styles */
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 230px;
}
nav ul{
    display:flex;
    align-items: center;
}
.nav-title{
    font-weight:800 ;
    font-size: 45px;
}
nav ul li{
    list-style:none ;
    margin-right: 50px;
}
nav a{
    text-decoration: none;
    font-size: 1.5rem;
}
/* Banner Styles */
.banner{
    display: flex;
    justify-content: space-between;
    margin: 0 35px 30px 230px;
}
.banner-content{
    max-width: 585px;
    /*max-height: 356px;*/
}
.banner-greetings{
    font-weight: 600;
    font-size: 45px;
}
.banner-title{
    font-weight: bold;
    font-size: 85px;
}
.banner-description{
    font-weight: 400;
    font-size: 18px;
}
.banner-pic{
    width: 580px;
}
/* Main Styles */
.main{
    max-width: 1140px;
    margin: 0 auto;
}
main section{
    margin-top: 130px;
    margin-bottom: 130px;
}
.about{
    border-radius: 10px;
    padding: 131px 156px;
    text-align: center;
    margin-top: 130px;
}
.about-items{
    display: flex;
    justify-content: space-around;
}
.item{
    margin: 0px;
}
.item-title{
    font-size: 1.25rem;
    font-weight: 400;
    color: #757575;
}
.item-description{
    font-size: 1.25rem;
    font-weight: bold;
    color: #181818;
}
.section-title{
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #181818;
}
.section-description{
    text-align: center;
    font-size: 18px;
    color: #757575;
}
/* Skills Styles */
.skills{
    border-radius: 10px;
    margin-top: 130px;
}
.skills-container{
    display: flex;
    gap: 24px;
}
.skill{
    padding: 30px;
    box-shadow: 0px 6px 50px 0 beige;
    border-radius: 5px;
}
.skill-title{
    font-size: 1.25rem;
    font-weight: bold;
    color: #181818;
}
.skill-description{
    font-size: 1rem;
    font-weight: 400;
    color: #757575;
}
/* Resume Section Styles */
.resume-container{
    display: flex;
    gap: 24px;

}
.text-center
{
    text-align: center;
}
.resume-download-cv{
    margin-top: 50px;
}
/* footer styles */
footer{
    padding: 130px 230px;
    display: flex;
    gap: 100px;
}
.footer-column{
    width: 50%;
}
footer input[type="text"], footer input[type="email"], footer textarea{
    height: 64px;
    border-radius: 5px;
    background-color: white;
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: none;
}
/* Responsive Media Query for Mobile Device */
@media screen and (max-width:576px) {
    .skills-container, 
    .resume-container, 
    footer, 
    .about-items, 
    .banner, 
    nav, nav > ul{
        flex-direction: column;
    }
    nav > ul{
        gap: 20px;
    }
    .btn-primary{
        margin-bottom: 20px;
    }
    .header{
        background-image: none;
    }
    .banner{
        margin: 20px;
    }
    .banner-pic{
        width: 100%;
    }
    footer, .about{
        padding: 20px;
    }
    .footer-column{
        width: 100%;
    }
    footer input[type="text"], footer input[type="email"], footer textarea{
        width: calc(100% - 40px);
    }
}
/* Responsive Media Query for Tablet Device */
@media screen and (min-width:576px) and (max-width:992px) {
    .banner{
        flex-direction: column;
    }
}