#load_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10005;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000000B3;
}

.webdev {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: B612;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform-origin: center;
  -webkit-animation: steeringwheel 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  animation: steeringwheel 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.web {
  display: flex;
  gap: 5px;
}

.dev {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.web>div,
.dev>div {
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  overflow: hidden;
}

.web>div:not(.space),
.dev>div:not(.space) {
  background-color: #E73673;
  border-radius: 5px;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes steeringwheel {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(-50deg);
  }

  80%,
  100% {
    transform: rotate(1080deg);
  }
}

@keyframes steeringwheel {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(-50deg);
  }

  80%,
  100% {
    transform: rotate(1080deg);
  }
}

.spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect1 {
  background: #Fff;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect2 {
  background: #FFF;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  background: #FFF;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  background: #FFF;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  background: #Fff;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.sk-circle {
  /* margin: 100px auto; */
  width: 10px;
  height: 10px;
  position: relative;
  background: #ffffff;
  border-radius: 100%;
  left: -18px;
  -webkit-animation: sk 1.2s infinite ease-in-out;
}

@keyframes sk {
  1% {
    top: -15px;
  }

  2% {
    top: 10px;
  }

  5% {
    top: -20px;
  }

  10% {
    left: -10px;
  }

  20% {
    top: -25px;
  }

  30% {
    left: 15px;
  }

  35% {
    top: 5px;
  }

  45% {
    top: -5px;
  }

  50% {
    top: -5px;
  }

  60% {
    top: -6px;
  }

  70% {
    top: 6px;
  }

  80% {
    top: 6px;
  }

  60% {
    top: -6px;
  }
}