@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  font-family: "Roboto";
  background: url("../../img/logo_star.png");
  background-size: 5%;
  color: #ffffff;
  animation: background-size 12s infinite;
}

@keyframes background-size {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 20%;
  }

  100% {
    background-position: 0%;
  }
}

main {
  margin-left: 10px;
}

.logo__display {
  width: 22rem;
}

.center {
  text-align: -webkit-center;
}

.line__short {
  line-height: 15px;
}

.right {
  float: right;
}

@keyframes fade-toggle {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.fa-spinner-third {
  font-size: 10em;
  animation: rotate infinite 1s linear;
}

.icon-enlarged {
  font-size: 10em;
  animation: fade-toggle 1s infinite;
}


.fa-youtube {
  color: #ff0000;
}

.fa-twitter {
  color: #00acee;
}

.fa-github {
  color: #ffffff;
}
