@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");




.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(transparent,#121414,#0c0f0f,#0000);

  height: 150%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items:center;
  justify-content: center;
  color: #191654;
}

#svg {
  height: 150px;
  width: 150px;
  stroke: rgba(9,172,205,255);
  fill-opacity: 0;
  stroke-width: 10px;
  stroke-dasharray: 4500;
  animation: draw 6s ease;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 4500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.name-container {
  height: 30px;
  overflow: hidden;
  font-family: "Michroma", sans-serif;

}

.logo-name {
  color: #3ab48f;
  font-size: 25px;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-left: 20px;
  font-weight: bolder;
}