@font-face {
  font-family: "CHINESETAKEAWAY";
  src: url("./CHINESETAKEAWAY.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "CHINESETAKEAWAY";
  margin: 0;
  text-align: center;
  background: black;
  color: white;
}

/* Background Layers */
#background-layer1,
#background-layer2 {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* #background-layer1 {
  background: url("media/l1J9EdzfOSgfyueLm/giphy.gif") repeat;
  background-size: 150px;
  animation: rotateLayer1 10s infinite linear;
} */

#background-layer2 {
  background: url("./media/back2.png") repeat;
  background-size: 300px;
  animation: rotateLayer2 15s infinite linear reverse;
}

@keyframes rotateLayer1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateLayer2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* Bouncing GIFs */
.moving-gif {
  position: absolute;
  animation: bounce 3s infinite ease-in-out, moveAround 10s infinite linear;
  width: 150px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
}

@keyframes moveAround {
  0% {
    top: 10%;
    left: 10%;
  }
  25% {
    top: 30%;
    left: 70%;
  }
  50% {
    top: 60%;
    left: 40%;
  }
  75% {
    top: 20%;
    left: 80%;
  }
  100% {
    top: 10%;
    left: 10%;
  }
}

/* Explosion Effect */
.explosion {
  position: absolute;
  width: 150px;
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

nav ul li a {
  font-size: 37px; /* Adjust to your desired size */
}
:root {
  --blur: 12px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
}
body.modal-open {
  overflow: hidden;
}
#app.blur {
  filter: blur(var(--blur));
  transition: filter 0.4s ease;
}
.entry-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  z-index: 9999;
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: hidden;
}
.entry-overlay__img {
  width: min(60vw, 380px);
  height: auto;
  display: block;
  cursor: pointer;
}
.entry-overlay {
  pointer-events: none;
}
.entry-overlay__img {
  pointer-events: auto;
  cursor: pointer;
  display: block;
}
