body {
  background: #000 url("/img/bg.jpg") center center no-repeat;
  background-size: cover;
  height: 100vh;
  font-family: "General Sans", sans-serif;
}

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

a.logo svg {
  height: 48px;
  width: auto;
  animation-name: reveal;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  will-change: opacity;
  margin-bottom: 24px;
}

h1 {
  font-weight: 300;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  animation-name: reveal;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  will-change: opacity;
  margin: 0;
}

strong {
  font-weight: 500;
}

@keyframes reveal {
  0% {
    opacity: 0;
  }
  ,
  1% {
    opacity: 0;
  }
  ,
  100% {
    opacity: 1;
  }
}
