body {
  font-family: "Palinto", system-ui;
  background-color: silver !important;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: mandatory;
  scroll-snap-stop: always;
}

.text {
  font-family: "Palinto", system-ui;
}

.header {
  background-color: silver;
  background-size: cover;
  align-items: center;
  align-content: center;
  width: 100vw;
  height: 100vh;
  margin: auto;
  padding: 5% 5% 15% 5%;
  display: grid;
}

.img-container {
  margin: auto;
  align-items: center;
  align-content: center;
  position: relative;
}

.icon-img {
  width: 45rem;
  height: 25rem;
  padding: 10%;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  animation:
    logoReveal 1s ease-out forwards,
    logoFloat 3s ease-in-out infinite;
}

.header-text {
  color: #fff;
  width: 100%;
  height: 100%;
  /* font-family: "Palinto", system-ui; */
  font-weight: 400;
  font-style: normal;
  margin: auto;
  align-items: center;
  align-content: center;
  text-align: center;
  position: relative;
}

.header-text h1 {
  color: #000;
}

.notifyLink a {
  color: darkgreen;
  text-decoration: none;
  font-weight: bolder;
}

.notifyLink a:hover {
  color: #073400;
  text-decoration: none;
}

#mc-embedded-subscribe-form {
  margin: 0 auto 5% auto !important;
  width: 75% !important;
}

#mc_embed_signup form {
  margin: 0;
}

#mc_embed_shell {
  background-color: black;
}

#mc_embed_signup h2 {
  margin-top: 0 !important;
}

#mc_embed_signup_scroll {
  color: #000;
  margin-top: 0;
}

.mc-field-group {
  color: #fff;
}

#mc_embed_signup .indicates-required {
  color: lightgrey;
}

#mc_embed_signup .button {
  background-color: darkgreen !important;
  color: #fff;
}

#mc_embed_signup .button:visited {
  background-color: darkgreen !important;
  color: #fff;
}

#mc_embed_signup .button:hover {
  background-color: #073400 !important;
  color: #fff;
}

@media only screen and (min-width: 1100px) {
  .header {
    height: 100%;
  }

  .icon-img {
    width: 50rem;
    height: 35rem;
    padding: 5%;
  }
}

@media only screen and (max-width: 700px) {
  .header {
    height: 100%;
  }

  .icon-img {
    width: 25rem;
    height: 12rem;
    padding: 5%;
  }
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
