@charset "utf-8";

.op-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999999;
  pointer-events: none;
}

.op-wrapper.fade-out {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.holiday__logo {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.holiday__logo svg {
  width: 180px;
}

@media only screen and (min-width: 768px) {
  .holiday__logo svg {
    width: 250px;
  }
}

.holiday__logo.is-visible {
  opacity: 1;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(0deg, #16182E, #16182E, #16182E);
  overflow: hidden;
  z-index: 99999;
}

.star {
  position: absolute;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(#fff, 0.2);
  opacity: 0;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

