* {
  margin: 0;
}
* :focus {
  outline: none;
}

@font-face {
  font-family: pixel;
  src: url(font/pixelS/my-standard.ttf);
}
@font-face {
  font-family: typewriter;
  src: url(font/typewriter/KingthingsTrypewriter2.ttf);
}
.noselection {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none; /* Standard syntax */
}

body {
  background-color: rgb(34, 34, 34);
  background-image: url(img/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
body .background-filter {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  transition: -webkit-backdrop-filter 4s;
  transition: backdrop-filter 4s;
  transition: backdrop-filter 4s, -webkit-backdrop-filter 4s;
  backdrop-filter: blur(2px) sepia(30%);
  -webkit-backdrop-filter: blur(2px) sepia(30%);
}

header {
  position: fixed;
}
header .logo {
  position: fixed;
  cursor: default;
  margin: 15px;
  font-family: pixel;
  font-size: 1.5em;
  color: black;
  display: flex;
  align-items: center;
}
header .logo img {
  width: 20px;
  padding-left: 6px;
}

@-webkit-keyframes loading {
  from {
    left: -25%;
    transform: rotate(-60deg);
  }
  to {
    left: 40%;
    transform: rotate(360deg);
  }
}

@keyframes loading {
  from {
    left: -25%;
    transform: rotate(-60deg);
  }
  to {
    left: 40%;
    transform: rotate(360deg);
  }
}
#loading {
  display: none;
  width: 20vw;
  position: absolute;
  -webkit-animation: loading 2.5s;
          animation: loading 2.5s;
  transition: ease-in;
  top: 45%;
  left: 40%;
}

main {
  display: none;
  justify-content: center;
}
main .criticalContent {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 350px;
  display: none;
  flex-flow: column;
  align-items: center;
}
main .criticalContent input {
  padding: 3px;
  border: none;
  border-bottom: 2px dashed rgb(196, 196, 196);
  background-color: rgba(0, 0, 0, 0);
  cursor: help;
  margin: auto, 0;
  color: rgb(196, 196, 196);
  font-size: 0.8em;
  text-align: center;
}

.paper {
  font-family: typewriter;
  font-size: 2em;
  background-color: white;
  min-width: 500px;
  max-width: 800px;
  min-height: 400px;
  margin: 70px auto 30px auto;
  position: absolute;
  padding: 20px;
}/*# sourceMappingURL=homepage.css.map */