/* font styles */

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

/* shared style */
.secondary-bg{
    background-color: #fff8f3;
}

.text-primary {
  color: #fd6e0a;
}

.dark-2 {
  color: #474747;
}

.btn-primary {
  background-color: #fd6e0a;
  color: #ffffff;
  padding: 18px 35px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 5px;
  border: none;
}

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

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

.text-center {
    text-align: center;
}

/* 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;
  /* padding: 10px; */
  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: 50px;
}

nav ul li a {
  text-decoration: none;
  font-size: 20px;
}

/* Banner styles */

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

.banner-content {
  max-width: 580px;
}
.banner-greetings {
  font-weight: 600;
  font-size: 45px;
  margin-top: 150px;
  margin-bottom: 5px;
}

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

.banner-description {
  font-weight: 400;
  font-size: 18px;
}

.banner-profile-picture {
  width: 584px;
  height: 676px;
}

/* main style */
main{
    max-width: 1140px;
    margin: 0 auto;
}

main section {
    margin-top: 130px;
    margin-bottom: 130px;
}
/* about styles */
.about{
    border-radius: 10px;
    padding: 130px 150px;
    text-align: center;
}
.about-items {
    display: flex;
    justify-content: space-around;
}
.item-description {
    font-weight: 600;
}
/* skills section styles */
.skills-container {
    display: flex;
    gap: 24px;
}

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

/* resume section styles */

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

.resume-column-title {
  font-size: 30px;
  font-weight: bold;
  color: #474747;
}

.experience-sub-title{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.experience-description, .experience-sub-title {
  color: #757575;
}

.experience hr {
  margin: 30px 0px;
}

.resume-download-cv{
  margin-top: 50px;
}

/* Footer styles */

footer{
  padding: 130px 230px;
  display: flex;
  gap: 100px;
}

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;
}

