* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

header {
  margin: 1rem;
}

main::before {
  height: 100%;
}

main {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(/img/bg.jpg);
  background-size: cover;
  background-position: 50%;
  min-height: 35rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

main h1 {
  text-align: center;
  font-size: 3rem;
  margin: 1rem;
}

main * {
  color: white;
  text-shadow: 0px 0px 15px black;
  font-size: 1.3rem;
}

footer {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 800px) {
  main h1 {
    font-size: 2rem;
  }
  main * {
    font-size: 1rem;
  }
}
