body {
  margin: 1.5em;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  font-size: 1.3rem;
}

.hero-img {
  position: absolute;
  top: 9%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0)), url("../images/background.jpeg");
  background-size: cover;
  background-position: 20% 20%;
  animation: introLoad 2s forwards;
}

h1 {
  font-size: 3rem;
  margin-top: 3em;
  line-height: 3.3rem;
}

.subhead {
  font-size: 1.4rem;
  margin-bottom: 4em;
}

section.hero {
  color: white;
  height: 90vh;
  animation: moveDown 1s ease-in-out forwards;
  opacity: 0;
}
@media only screen and (min-width: 920px) {
  section.hero {
    color: black;
    height: auto;
    width: 40%;
    margin-bottom: 8em;
  }
  section.hero .subhead {
    margin-bottom: 3em;
  }
}

header img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 680px) {
  body {
    margin: 1.5em;
  }
  header img {
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 680px) {
  body {
    margin: 1.5em 5em;
  }
}
@media only screen and (min-width: 920px) {
  .hero-img {
    left: unset;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .wrapper {
    width: auto;
    margin: 0 auto;
  }
  .feature {
    gap: 0;
  }
}
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1em 0;
  background-color: #333;
  color: white;
}
footer p {
  font-size: 0.8rem;
  margin: 0;
}
footer a {
  color: white;
  font-size: inherit;
}

@keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes moveDown {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */