.preloader {
  position: absolute;
  width: 100dvw;
  height: 100dvh;
  background-color: var(--primary-color);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 250ms linear;
}

.preloader-image {
  height: 100dvh;
}


.container {
  position: absolute;
  top: 80vh;
  width: 80vw;
  max-width: 671px;
  z-index: 2;
}

.progress {
  padding: 1px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25),
    0 1px rgba(255, 255, 255, 0.08);
}

.progress-bar {
  height: 4px;
  border-radius: 30px;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.05)
  );

}

.progress-moved .progress-bar {
  width: 0;
  background-color: var(--secondary-color);
  transition: width 100ms ease-in-out;
}



* {
  box-sizing: border-box;
  font-size: 1rem;
}

body {
  margin: 0;
  overflow: hidden;
  background-color: var(--primary-color);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary-color: #1a1a1a;  
  --primary-color-opacity: #1a1a1a60;
  --secondary-color: #EFDDA9;
  --secondary-color-opacity: #efdda933;
}

.top-canvas-node {
  display: flex;
  border: none;
  height: 100dvh;
  width: 100dvw;
  justify-content: center;
  position: relative;
}

.top-canvas-node.loaded {
  align-items: center;
}
