@font-face {
  font-family: "Incompleeta";
  src: url("../fonts/IncompleetaRegular.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  background: hsl(0, 0%, 0%);
  background: radial-gradient(circle, hsl(0, 0%, 0%) 0%, hsl(0, 0%, 4%) 69%, hsl(0, 0%, 8%) 100%);
  background: -webkit-radial-gradient(circle, hsl(0, 0%, 0%) 0%, hsl(0, 0%, 4%) 69%, hsl(0, 0%, 8%) 100%);
  color: #fff;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Incompleeta", sans-serif;
  overflow: hidden;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.socials {
  list-style: none;
  margin: 1.5em;
  padding: 0;
}

.socials li {
  list-style: none;
  float: left;
  margin: 0 1em;
}

.social-icon {
  color: #fff;
  text-decoration: none;
  font-size: 2em;
}

.social-icon:hover {
  color: #10c1ee;
  text-decoration: none;
}

.social-icon i {
  transition: all 250ms ease-in-out;
}

.social-icon i:hover {
  transform: scale(1.2);
}

.logo {
  animation: breathe 5.5s ease-in-out infinite;
}

.specialsocial-icon {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  transition: all 250ms ease-in-out;
}

.specialsocial-icon:hover {
  color: #10c1ee;
  text-decoration: none;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  .socials {
    margin: 1em;
  }
  .socials li {
    margin: 0 0.5em;
  }
  .social-icon {
    font-size: 1.5em;
  }
  .content h1 {
    font-size: 1.3em;
  }
}/*# sourceMappingURL=style.css.map */