body {
  font-family: "League Spartan", sans-serif;
}

.fw-100 { font-weight: 100; }
.letter-sp-1 { letter-spacing: 1px; }

.background {
  background-color: #444444;
  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/lake.jpg');
  background-position: center;
  background-size: cover;
  color: white;
  height: 100vh;
  padding-top: 0.5rem;
  padding-bottom: 4rem;
  text-align: center;
}

.std-headline {
  font-family: "Tangerine", cursive;
  font-size: 12rem;
}

.std-details {
  letter-spacing: 2px;
  margin-left: 30px;
}

.names {
  font-family: "Tangerine", cursive;
  font-size: 5rem;
}

.mobile-std {
  display: none;
}

@media screen and (max-width: 820px) {
  .background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/lake-mobile.jpg');
    padding-top: 4rem;
    padding-bottom: 10vh;
  }

  .mobile-std {
    display: block;
  }

  .desktop-std {
    display: none;
  }

  .std-headline {
    font-size: 22vw;
  }

  .names {
    font-size: 3.5rem;
  }
}
