html, body {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "acumin-pro-wide";
  font-weight: 200;
  background-color: black;
  color: white;
  text-align: center;
}

.logo {
  width: 100%;
  height: 58px;
  max-width: 480px;
  display: block;
  background-image: url("img/logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  margin: 0 auto;
  padding: 0.6rem 0;
}

a {
  color: white;
  text-decoration: none;
}

a:focus, a:hover, a:active {
  text-decoration: underline;
}

.main {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center
}