html,
body {
  background-color: #1a1a1a;
  color: #000;

  font-family: "Stint Ultra Expanded", serif;
}

.wrapper {
  display: none;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
#graphics {
	position: absolute;
	margin: 0px;
	left: 0px;
	top: 0px;
	background-color: transparent;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loader-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader {
  position: fixed;
  top: 115%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  color: #ce2544;
}
.fade-out {
  animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 10%;
}
.header-bar {
  width: 100%;
  background-color: #fa5252;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.header-bar img{
  max-height: 220px;
}

.glasses {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  animation: slideInOut 3s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  transform: translateY(-60vh);
}

.glasses:nth-of-type(2) {
  animation-delay: -0.9s;
}
.glasses:nth-of-type(3) {
  animation-delay: -0.125s;
}
.glasses:nth-of-type(4) {
  animation-delay: 0.625s;
}
.glasses:nth-of-type(5) {
  animation-delay: 1.325s;
}

.img-header img {
  max-width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .contenedor-imagen {
    justify-content: center;
    align-items: center;
  }
}
.social-media ul li {
  list-style: none;
}
.icono {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 40px;
  text-align: center;
  text-decoration: none;
  color: #ce2544;
}

.icono.telegram:hover {
  color: #0088cc;
}
.icono.telegram:hover span {
  background: #0088cc;
}
.icono.twitter:hover {
  color: #1da1f2;
}
.icono.twitter:hover span {
  background: #1da1f2;
}
.icono.instagram:hover {
  color: #c32aa3;
}
.icono.instagram:hover span {
  background: #c32aa3;
}

.icono.github:hover {
  color: #333;
}
.icono.github:hover span {
  background: #333;
}

@keyframes slideInOut {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  5% {
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  35% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.phrase {
  text-align: center;
  color: #ce2544;
}
