body {
  margin: 0;
  padding: 0;
  font-family: "dinosaur";
  color: #244047;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

p {
  text-align: center;
  line-height: 1.25;
  margin: 0 0 1em;
}

a:not(.plain) {
  position: relative;
  text-decoration: none;
  color: #244047;
  white-space: nowrap;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
a:not(.plain):after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 2px;
  border-bottom: 0.125em solid #BA5624;
  animation-name: borderIn;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}
a:not(.plain):hover:after {
  animation-name: borderOut;
  animation-duration: 0.25s;
  animation-fill-mode: forwards;
}

main {
  width: 100vw;
  height: 100vh;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4em;
  overflow: hidden;
}
@media screen and (max-width: 720px) {
  main {
    padding: 2em;
  }
}
main .wrapper {
  max-width: 35em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .wrapper h1 {
  font-weight: 400;
  display: none;
}
main .wrapper p {
  z-index: 2;
  position: relative;
  line-height: 1.5;
  font-size: 1.25em;
}
main .wrapper .logo a {
  text-decoration: none;
  font-size: 2em;
  color: #244047;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  margin-left: 1em;
}
main .wrapper .logo a svg {
  width: 240px;
  fill: #244047;
  margin-top: 0.2em;
  margin-right: 0.2em;
}

@keyframes borderIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes borderOut {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

/*# sourceMappingURL=main.css.map */