@font-face {
  font-family: Barlow;
  src: url(barlow.ttf);
}

body {
  display: table;
  height: 100vh;
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #f0f0f0;
  background-color: #393939;
  text-shadow: #000 0 0 8px, #000 1px 1px 8px, #000 -1px -1px 8px,
    #000 2px 2px 0px, #000 -2px -2px 0px;
  cursor: default;
  user-select: none;
}

#nothing {
  width: 100vw;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.maintext {
  font-size: 5vw;
}

.hidden {
  display: none;
}

.appear {
  opacity: 0;
  -webkit-animation: appear 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1s both;
  animation: appear 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1s both;
}

@-webkit-keyframes appear {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
