#__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
  background-color: #ff5e00;
  transition: height 1.5s 0.4s ease-in-out;
}

body {
  overflow: hidden;
  background-color: #ff5e00;
}

body[data-curtain="false"] {
  background-color: #fff;
  transition: background-color 0.6s ease-in-out;
  overflow: auto;
}

@keyframes blinking {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking {
  animation: blinking 1.3s infinite;
}
