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

/* shared style */
.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: none;
    border-radius: 5px;
    cursor: pointer;
}

.section-title{
    font-size: 35px;
    font-weight: bold;
    color: #181818;
}

.section-description{
    font-size: 18px;
    color: #757575
}

.bg-secondary{
    background-color: #FFF8F3;
}
.text-center{
    text-align: center;
}
/* main styles */
main{
    max-width: 1140px;
    margin: 0 auto;
}

main section{
    margin-bottom: 130px;
    margin-top: 130px;
}

/* header styles */
.header{
    background-image: url(../images/developer.png), url(../images/header_bg.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
}

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

.nav-title{
    font-weight: 800;
    font-size: 45px;
}

nav ul{
    display: flex;
    align-items: center;
}

nav ul li{
    list-style: none;
    margin-right: 51px;
}
nav li a{
    text-decoration: none;
    font-size: 20px;
}


/* banner styles */
.banner{
    display: flex;
    justify-content: space-between;
    margin: 0 35px 0 230px;
}

.banner-content{
    max-width: 580px;
}

.banner-greetings{
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0;
}

.banner-title{
    font-weight: bold;
    font-size: 45px;
    margin-top: 5px;
    margin-bottom: 0;
}

.banner-description{
    font-size: 18px;
    margin: 20px 0 30px 0;
}

.banner-profile-pic{
    width: 580px;
}

.btn-banner{
    margin-top: 0;
}

/* about styles */
.about{
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
    
}

.about-items{
    display: flex;
    justify-content: space-around;
}

.about-item{
    max-width: 20%;
    
}

.item-title{
    font-size: 20px;
    color: #757575;
}

.item-description{
    font-weight: bold;
    font-size: 15px;
    word-wrap: break-word;
    color: #474747;
}

/* skills section styles */

.skills-container{
    display: flex;
    gap: 24px;
}

.skill{
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 6px 50px 0 rgba(0, 0, 0, 0.06);
    margin-top: 30px;
}

.skills-first-title{
    margin-bottom: 30px;
}

.skills-first-description{
    padding: 0 100px;
    margin: 0;
}

.skill-title{
    font-size: 20px;
    font-weight: bold;
    color: rgba(24, 24, 24, 1);
}

.skill-description{
    font-size: 16px;
    color: rgba(117, 117, 117, 1)
}

/* resume section styles */

.resume-container{
    display: flex;
    gap: 24px;
}

.experience-title{
    font-size: 25;
    font-weight: bold;
    color: rgba(71, 71, 71, 1);
    margin-bottom: 0;
}

.experience-sub-title{
    margin-bottom: 20px;
    margin-top: 10px;
}

.experience-description, .experience-sub-title{
    color: rgba(117, 117, 117, 1);
    font-size: 16px;
}

.resume hr{
    margin: 30px auto;
}


/* 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;
    color: #757575;
    display: block;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: none;
}