.hero {
  /* height: 1024px; */
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/assets/vs-hero-bg-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.logo {
  position: absolute;
  top: 8%;
  left: 8%;
  color: white;
  height: 70px;
}
.logo img {
  height: 100%;
  object-fit: contain;
}
.hero-header {
  color: white;
  text-align: center;
}

.header-name {
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.31em;
}
.header-description {
  font-family: var(--playfair-font);
  font-weight: 400;
  font-size: 55px;
}
.hero-weather {
  position: absolute;
  left: 8%;
  bottom: 8%;
  color: white;
  display: flex;
  align-items: center;
  gap: 50px;
  height: fit-content;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
.line {
  width: 2px;
  height: 18px;
  background-color: #fff;
}
@media (max-width: 1400px) {
  .hero {
    height: 950px;
  }
  .header-name {
    font-size: 23px;
  }
  .header-description {
    font-size: 40px;
  }
  .hero-weather {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .hero-weather {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .hero {
    height: 100vh;
  }
  .logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
  }
  .header-name {
    font-size: 16px;
    font-weight: 500;
  }
  .header-description {
    font-size: 32px;
    font-weight: 400;
  }
  .hero-weather {
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 20px;
  }
}
@media (max-height: 700px) {
  .hero {
    height: 780px;
  }
}
