@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap");
body {
  margin: 0;
  padding: 0;
}

p {
  font-family: 'Fugaz One';
  font-size: 1em;
}

a {
  text-decoration: none;
  color: black;
}

.logo {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader {
  font-family: 'Fugaz One';
  font-size: 2em;
}

@-webkit-keyframes blink {
  50% {
    color: transparent;
  }
}

@keyframes blink {
  50% {
    color: transparent;
  }
}

.loader__dot {
  -webkit-animation: 1s blink infinite;
          animation: 1s blink infinite;
}

.loader__dot:nth-child(2) {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.loader__dot:nth-child(3) {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

@media only screen and (max-width: 600px) {
  .logo img {
    width: 200px;
  }
}
/*# sourceMappingURL=main.css.map */