html {
  box-sizing: border-box;
}
*,
::after,
::before {
  box-sizing: inherit;
}
body {
  height: 100vh;
  height: calc( var(--vh, 1vh) * 100);
  margin: 0;
  background-color: #000;
  font-family: -apple-system BlinkMacSystemFont, 'Segoe UI', Roboto, 'Oxygen-Sans', Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

canvas {
  display: none !important;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  canvas {
    display: block !important;
  }
}

main {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo {
  width: auto;
  height: 70px;
  fill: #fff;
  margin-bottom: 1rem;
}

.link {
  display: inline-block;
  transition: background-position-x .6s ease;
  color: #fff;
  background-image:
    linear-gradient(
      to right,
      #fff 0,
      #fff 33%,
      transparent 33%,
      transparent 66%,
      #fff 66%,
      #fff 100%
    );
  background-repeat: no-repeat;
  background-size: 300% 2px;
  background-position-x: 100%;
  background-position-y: bottom;
  font-weight: bold;
  text-decoration: none;
}
.link:hover {
  background-position-x: 0%;
  color: #fff;
  cursor: pointer;
}