* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  .radley-regular {
    font-family: "Radley", serif;
    font-weight: 400;
    font-style: normal;
  }
  /* BACKGROUND ANIMATION SPARKLES */

  background-image: url("/assets/images/bg-gameblingz.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  position: relative;
}

/* hero-image */
.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo {
  width: 400px;
  max-width: 80vw;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.35));
}

/* SPARKLES */
.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow:
    0 0 10px white,
    0 0 20px white,
    0 0 30px white;
  animation: twinkle 2s infinite ease-in-out;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  background: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sparkle::before {
  width: 2px;
  height: 15px;
}

.sparkle::after {
  width: 15px;
  height: 2px;
}

.s1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.s2 {
  top: 25%;
  right: -30px;
  animation-delay: 0.5s;
}

.s3 {
  bottom: 15%;
  left: 6%;
  animation-delay: 1s;
}

.s4 {
  bottom: 3%;
  right: 15%;
  animation-delay: 1.5s;
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* h1 {
  margin-top: 30px;
  color: #e0eceb;
  font-family: Radley;
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 15px 0 20px #9a8861;
} */

@media (max-width: 768px) {
  h1 {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }

  .logo {
    width: 280px;
  }
}
