html,
body {
  height: 100%;
}

@keyframes rock-side-to-side {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}

.landing {
  min-height: 100%;
  position: relative;
  padding: 60px 120px;
  background-image: url("assets/images/mountains.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  color: rgba(28, 45, 86, 1);
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.landing > * {
  position: relative;
  z-index: 1;
}

.landing > img {
  z-index: 0;
}

.landing h1 {
  margin-block: 64px 32px;
  font-weight: 400;
  font-size: 35px;
  line-height: 50px;
}

.landing h1 > em {
  color: rgba(0, 174, 239, 1);
  font-weight: 800;
  font-style: unset;
}

.landing h2 {
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
  margin: 0;
}

.landing h1 {
  max-width: 810px;
}

.landing h2 {
  max-width: 600px;
}

.landing h2 em {
  font-weight: 800;
  font-style: unset;
}

.landing .clouds-img {
  position: absolute;
  bottom: 0;
  width: 87vw;
  height: auto;
  left: 0;
  animation-name: rock-side-to-side;
  animation-duration: 20s;
  animation-iteration-count: infinite;
}

.landing .birds-img {
  display: none;
  position: absolute;
  width: 14vw;
  height: auto;
  left: 42vw;
  bottom: 20vh;
}

.landing label {
  margin-block: 64px 16px;
  display: block;
  color: rgba(0, 174, 239, 1);
  font-weight: 800;
  font-size: 22px;
  line-height: 26px;
}

.email-wrapper {
  display: flex;
  justify-content: space-between;
  width: 440px;
  max-width: 100%;
  padding: 16px 28px;
  border-radius: 60px;
  border: 2px solid rgba(217, 217, 217, 1);
  background-color: white;
}

.email-wrapper input,
.email-wrapper button {
  border: none;
  background: white;
  padding: 0;
  margin: 0;
}

.email-wrapper input {
  flex: 1;
  margin-right: 28px;
}

.email-wrapper input::placeholder {
  color: rgba(217, 217, 217, 1);
}

.email-wrapper:focus-within,
.email-wrapper:hover {
  border-color: rgba(0, 174, 239, 1);
}

.email-wrapper input:focus {
  outline: none;
}

.email-wrapper button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
