@font-face {
  font-family: 'AlteHaasGroteskRegular';
  src: url('/fonts/AlteHaasGroteskRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'AlteHaasGroteskRegular', sans-serif;
  background: #fff;
  color: #111;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.6em;
  line-height: 1.5;
  opacity: 0;
  animation: fadeIn 0.7s ease-out forwards;
  transition: opacity 0.7s ease-out;
  position: relative;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

a.back {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 24px;
  font-family: 'AlteHaasGroteskRegular', sans-serif;
  color: #aaa;
  text-decoration: none;
  user-select: none;
  transition: color 0.2s ease;
  z-index: 1000;
  line-height: 1;
}

a.back:hover {
  color: #333;
}

a {
  color: inherit;
  text-decoration: underline;
}
