@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* font-family: "Open Sans", sans-serif; */

*{
    margin: 0;
    padding: 0;
}
/* shared style */
.dark-1{
    color: #181818;
}
.dark-2{
    color: #474747;
}
.dark-3{
    color: #757575;
}
.orange{
    color: #FD6E0A;
}
.btn-primary{
    border: none;
    border-radius: 5px;
    color: white;
    background-color: #FD6E0A;
    font-weight: bold;
    padding: 18px 35px;
}
.secondary-bg{
    background-color:  oldlace;
}
.section-title{
    font-size: 35px;
    font-weight: bold;
    color: #181818;
}
.section-description{
    font-size: 18px;
    color: #757575;
}
.align-center{
    text-align: center;
}
.margin{
    margin-top: 30px;
    margin-bottom: 30px;
}
/* body style */
body{
    font-family: Open Sans;
}
header{
    padding: 20px 38px 0 200px ;
    background-image: url(../images/header_bg.png), url(../images/developer.png);
    background-repeat: no-repeat;
    background-position: bottom right, left;
}
main{
    margin-left: 230px;
    margin-right: 230px;
}

/* navbar style */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-header{
    font-size: 45px;
    font-weight: 800;
}
.navbar ul{
    display: flex;
    gap: 50px;
    align-items: center;
}
.navbar ul li{
    list-style: none;
}
.navbar li a{
    text-decoration: none;
    font-size: 20px;
}

/* banner styles */
.banner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-content{
    height: 350px;
}
.banner-greeting{
    /* margin-bottom: 20px; */
    font-size: 45px;
    font-weight: 600;
}
.banner-title{
    font-size: 85px;
    font-weight: bold;
}
.banner-description{
    font-size: 18px;
    margin-bottom: 30px;
}

/* about style */
.about{
    margin-top: 130px;
    margin-bottom: 130px;
    border: none;
    border-radius: 10px;
    padding: 130px 156px;
}
.about-container{
    background-color: #FFFFFF;
    text-align: center;
}
.about-informations{
    display: flex;
    justify-content: space-around;
}

/* experience styles */
.experience{
    margin-bottom: 130px;
}
.icon-container{
    display: flex;
    gap: 24px;
}
.icon{
    border: none;
    border-radius: 5px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 30px;
}
/* resume styles */
.resume-container{
    display: flex;
    gap: 24px;
    margin: 113px 0px 50px 0px;
}
.resume-header{
    font-weight: bold;
    font-size: 30px;
    color: #474747;
    margin-bottom: 30px;
}
.resume-title{
    font-weight: bold;
    font-size: 25px;
    color: #474747;
}
.resume-subtitle{
    font-weight: 600;
    font-size: 20;
    color: #757575;
    margin: 10px 0px 20px 0px;
}
.resume-description{
    color: #757575;
    font-size: 16px;
}
.resume hr{
    color: #D1D1D1;
    margin: 30px 0px;
}
/* footer style */
footer{
    margin-top: 113px;
}
.contact{
    display: flex;
    padding: 130px 230px;
    gap: 117px;
}
input[type=text], [type=email]{
    border: none;
    border-radius: 5px;
    width: 460px;
    height: 64px;
    margin-bottom: 24px;
    padding: 10px 20px;
}
textarea{
    border: none;
    padding: 20px;
}