.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  z-index: 1000;
}

.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;
  margin-top: 130px;
}
.hero-content {
  position: relative;
  margin-top: 500px;
  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 {
  margin-top: 30px;
  padding: 90px;
}
.main-content-title {
  color: #ffd700;
  margin-bottom: 20px;
}
.main-content-text {
  color: #f1f1f1;
}
.main-content_gallery {
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  align-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.main-content_gallery_imgcontainer {
  width: 360px;
  height: 360px;
  border-radius: 16px;
}
/*=========================
      FOOTER
=========================*/
.footer-content {
  display: flex;
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #85c079;
  flex-direction: row;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-end;
}
.footer-content_text {
  margin: 30px;
}
/*=========================
      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;
  }
}
