body,
html {
  height: 100%;
  background-color: #000000;
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}

.container {
  background-color: transparent;
}

.img {
  max-width: 50%;
  max-height: 50%;
}

.logo {
  width: 400px;
  animation: 20s fade-out;
  animation-fill-mode: forwards;
}

.particles {
  animation: 20s fade-in-particles;
  animation-fill-mode: forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: scale(0) rotate(-360deg);
    visibility: hidden;
  }
}

@keyframes fade-in-particles {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

canvas {
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
