html {
  height: 100%;
  width: 100%;
  background-color: #0d0d0d;
  color: #fcfcfc;
  font-family: 'Outfit', sans-serif;
}

main {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

main img {
  width: 80vw;
  height: auto;
}

@media only screen and (min-width: 640px) {
  main img {
    width: 30vw;
    height: auto;
  }
}

main a {
  color: silver;
  text-decoration: underline dotted silver;
}

main a:hover {
  text-decoration: underline silver;
}

main p {
  font-weight: 200;
}

main h1 {
  font-weight: 800;
}