@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}

body {
  font-family: "Michroma", sans-serif;
  height: 100vh;
}

.container {
  background-color: black;
  color: #fff;
  height: 100%; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 1;
  transition: opacity 2s ease;
}



.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  background:-moz-linear-gradient(top, #b6813f, #202224); 
  background:-webkit-linear-gradient(top, #b6813f, #202224); 

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

#svg {
  height: 300px;
  width: 300px;
  stroke: white;
  fill-opacity: 0;
  stroke-width: 4px;
  stroke-dasharray: 4500;
  animation: draw 10s ease;
}

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

 
}

.name-container {
  height: 30px;
  overflow: hidden;
}

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