.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Monserrat", sans-serif;
  background: #2a2c2f;
}

/*=========================
        HEADER
=========================*/

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
}

.header-logo {
  height: 80px;
}

.header-nav {
  margin-top: 0;
}
.header-nav_menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.header-nav_menu_link {
  text-decoration: none;
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.header-nav_menu_link:hover {
  color: #ffd700;
}

/*=========================
        HERO
=========================*/
.hero {
  display: flex;
  margin-left: 51%;
  margin-right: 30px;
  align-items: flex-start;
  flex-flow: row;
}
.hero-img {
  width: 100%;
  position: absolute;
  z-index: -1;
}
.hero-content {
  position: relative;
  margin-top: 380px;
  color: #000000;
  text-align: center;
}

.hero-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #ffd700;
  color: #222;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: white;
}
/*=========================
      MAIN
=========================*/
.main-content {
  display: flex;
  margin-top: 30px;
  padding: 90px;
  justify-content: space-between;
  align-items: flex-start;
}
.main__content-profileimg {
  width: 285px;
  height: 285px;
  border-radius: 360px;
}
.main__content-bio {
  width: 900px;
}
.main__content_subtitle {
  color: #f1f1f1;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.main-content-title {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 32px;
}
.main-content-text {
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 300;
  font-kerning: 10px;
}

/*=========================
      FOOTER
=========================*/
.footer {
  margin-top: 30px;
}

.footer-content {
  display: flex;
  width: 100%;
  height: 150px;
  background-color: #85c079;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-top: 40px;
}
.footer__link {
  font-family: "Monserrat", sans-serif;
  font-weight: bold;
  color: #2a2c2f;
  font-size: 16px;
  text-decoration: none;
}
.footer__social_icon {
  width: 45px;
  padding-top: 10px;
}
.footer__content-text {
  font-family: "Monserrat", sans-serif;
  font-weight: normal;
  font-size: 16px;
  padding-top: 10px;
}
.footer__content-copyrigth {
  display: flex;
}
.footer__content-info {
  display: flex;
  gap: 50px;
  flex-direction: row;
  align-content: flex-start;
  flex-wrap: wrap;
}

/*=========================
      RESPONSIVE
=========================*/

@media (max-width: 900px) {
  header {
    padding: 20px 30px;
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .logo img {
    height: 50px;
  }
}
