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

* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

body {
  width: 100vw;
  height: 100vh;
  font: 16px/1.4 sans-serif;
  text-align: center;
  font-family: "Causten-Regular";
  background-color: #07040A;
  background: radial-gradient(#161517, #121113, #07040A);
  color: #EFEBE2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

a,
button,
button * {
  cursor: pointer;
}

h1 {
  font-size: 3rem;
  -webkit-animation: pulse 1s;
          animation: pulse 1s;
}

h1 small {
  display: block;
  font-size: 2rem;
}

@media (max-width: 500px) {
  h1 {
    font-size: 2rem;
  }
  h1 small {
    font-size: 1rem;
  }
}

a {
  color: #B175FF;
}

p {
  margin: 5px auto;
  color: #929292;
}

.social {
  margin: 20px auto;
}

.social a {
  margin: 0 10px;
}

.social a img {
  max-width: 23px;
  max-height: 23px;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.social a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: brightness(3);
          filter: brightness(3);
}

@media (max-width: 500px) {
  .social a {
    margin: 0 8px;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (min-width: 500px) {
  * {
    font-size: calc(16px + (8/1200) * 100 * 1vw);
  }
}
/*# sourceMappingURL=styles.css.map */