* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#image {
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: absolute;
  filter: blur(8px);
  transform: scale(110%);
}

#image-processed {
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: absolute;
  transform: scale(1.1);
  animation: blur-anim 1s;
  filter: blur(5px);
}

body {
  background-color: black;
  overflow: hidden;
  display: flex;
  width: 100vw;
  height: 100vh;
}

#main-row {
  background-color: #141414;
  width: 60vh;
  height: 100%;
  max-width: 100vw;
  margin: auto;
}

#icon-container {
  margin: auto;
  transform: scale(0.8)-translate(-50%, -50%);
  margin-top: 50%;
  width: 40vh;
  max-width: 100vw;
}
#icon-container p {
  font-family: "Poppins";
  font-size: 20px;
  width: 100%;
  height: 5vh;
  color: #9c9a9a;
}

#logo {
  clip: rect(0px, 60px, 20px, 0px);
  width: 100%;
  animation: fill-anim 0.5s ease forwards 3.5s;
}

#logo path:nth-child(1) {
  stroke-dasharray: 337px;
  stroke-dashoffset: 337px;
  animation: line-anim 2s ease forwards 0.3s;
}

#logo path:nth-child(2) {
  stroke-dasharray: 464px;
  stroke-dashoffset: 464px;
  animation: line-anim 2s ease forwards 0.6s;
}

#logo path:nth-child(3) {
  stroke-dasharray: 605px;
  stroke-dashoffset: 605px;
  animation: line-anim 2s ease forwards 0.9s;
}

#logo path:nth-child(4) {
  stroke-dasharray: 464px;
  stroke-dashoffset: 464px;
  animation: line-anim 2s ease forwards 1.2s;
}

#logo path:nth-child(5) {
  stroke-dasharray: 478px;
  stroke-dashoffset: 478px;
  animation: line-anim 2s ease forwards 1.5s, fill-anim-red 2s ease forwards 3.2s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill-anim {
  from {
    fill: transparent;
  }
  to {
    fill: white;
  }
}
@keyframes blur-anim {
  from {
    transform: scale(1.3);
    filter: blur(12px);
  }
  to {
    transform: scale(1.1);
    filter: blur(5px);
  }
}
@keyframes fill-anim-red {
  from {
    stroke: white;
    fill: transparent;
  }
  to {
    stroke: #ffb800;
    fill: #ffb800;
  }
}
@media only screen and (max-width: 600px) {
  #icon-container {
    transform: scale(0.8)-translate(-50%, -50%);
    margin-top: 50%;
  }
}

/*# sourceMappingURL=style.css.map */
