html,
body {
  padding: 0;
  margin: 0;
  font-family: "IBM Plex Sans", arial, sans-serif;
  width: 100%;
  height: 100%;
}

main {
  height: auto;
  min-height: 100%;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  align-text: center;
  background-color: #111;
  background-image: url('./assets/bkgd.svg');
  background-size: cover;
  background-position: center;
}

.content {
  margin: auto;
  padding: 2rem;
  text-align: center;
  color: white;
  max-width: 100vw;
}

h1 {
  font-weight: 300;
  max-width: 640px;
  margin: 4rem auto;
  text-shadow: 1px 1px 4px #000;
}

.logo {
  height: auto;
  max-width: 100%;
  width: 50vw;
  text-align: center;
}

.button {
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 2rem;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px #000;
  box-shadow: 2px 2px 8px #000
}

.copyright {
  margin-top: 4rem;
  font-size: .75rem;
  color: white;
  text-shadow: 1px 1px 4px #000;
}