* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.pageContainer {
  min-width: 100vw;
  min-height: 100vh;
  height: 100vh;
}

.loadingPage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: inherit;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(2, 126, 203, 1) 10%,
    rgba(0, 82, 155, 1) 100%
  );
}

.loadingPageContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.spinner {
  fill: #ffffff;
  width: 50px;
  margin-bottom: 10px;
  animation: spin 1.3s ease-in-out infinite;
}

.loadingBarContainer {
  width: 190px;
  height: 40px;
  border: 4px solid #00669a;
  border-radius: 5px;
  overflow: hidden;
  padding: 3%;
}

.loadingBar {
  width: 0%;
  height: 100%;
  background-color: #fff;
}

.loadingText {
  font-family: "Arial", sans-serif;
  font-size: 1.5em;
  color: white;
}

.enterButton {
  padding: 5% 10%;
  background: linear-gradient(
    0deg,
    rgba(3, 144, 226, 1) 0%,
    rgba(0, 84, 177, 1) 50%,
    rgba(3, 144, 226, 1) 100%
  );
  border: #003a72 solid 1px;
  border-radius: 5px;
  color: #ffffff;
  font-family: "Arial", sans-serif;
  box-shadow: rgb(79, 195, 243) 2px 0px 0px 0px inset,
    rgb(19, 73, 125) 0px 1px 0px 1.25px, rgb(4, 52, 122) -2px -1px 0px 1.5px,
    rgb(83, 204, 249) 1px 2px 0px 2px;
  color: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(11, 56, 100);
  border-image: initial;
  transition: background 1s ease;
}

.enterButton:hover {
  background: #0057af;
  cursor: pointer;
}

.mainPage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/background.webp") no-repeat;
  background-size: cover;
}

.contentBox {
  position: relative;
  display: flex;
  width: 30%;
  height: 500px;
  background-color: #121212;
  border: 3px solid #00df75;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 10px;
}

.contentTitle {
  color: #0deb4b;
  font-family: "Jersey 10", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
  text-align: center;
}

.contentBody {
  color: #14cd48;
  font-family: "Jersey 10", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 36px;
}

.conejoImage {
  position: absolute;
  width: 150px;
  top: -20%;
  right: -5%;
  opacity: 1;
  filter: hue-rotate(90deg) saturate(3) drop-shadow(3px -2px 0 #00df75)
    drop-shadow(-2px 3px 0 #00df75);
}

.conejoImage2 {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -20%;
  right: -5%;
  opacity: 1;
  /*background-image: url("../images/conejo.png");*/
  background-size: contain;
  background-repeat: no-repeat;
  filter: hue-rotate(90deg) saturate(3) drop-shadow(3px -2px 0 #00df75)
    drop-shadow(-2px 3px 0 #00df75);
}

.conejoImageContainer {
  position: absolute;
  width: 174px;
  height: 150px;
  top: -20%;
  right: -5%;
  opacity: 1;
  filter: hue-rotate(90deg) saturate(3) drop-shadow(3px -2px 0 #00df75)
    drop-shadow(-2px 3px 0 #00df75) brightness(0.8);
  user-select: none;
}

.conejoChunk {
  position: relative;
  width: inherit;
  opacity: 1;
  background-image: url("../images/conejo.png");
  background-size: 100% auto;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.dancingPenguin {
  position: absolute;
  width: 150px;
  filter: hue-rotate(0deg);
  bottom: 0;
  animation: randomRotation 5s linear infinite;
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}

#musicPlayer {
  position: fixed;
  opacity: 0.1;
  max-height: 30px;
  max-width: 150px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

@keyframes randomRotation {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

@keyframes glitch-5 {
  0.00%,
  33.33%,
  43.33%,
  66.67%,
  76.67%,
  100.00% {
    transform: none;
    filter: hue-rotate(0) drop-shadow(0 0 0 transparent);
  }

  33.43%,
  43.23% {
    transform: translateX(var(--glitch-x-1));
    filter: hue-rotate(var(--glitch-hue-1))
      drop-shadow(0px -4px 0 rgb(0 0 255 / 0.1));
  }

  66.77%,
  76.57% {
    transform: translateX(var(--glitch-x-2));
    filter: hue-rotate(var(--glitch-hue-2))
      drop-shadow(-1px 0px 0 rgb(255 0 0 / 0.1));
  }
}

@keyframes glitch-6 {
  0.00%,
  33.33%,
  41.67%,
  66.67%,
  75.00%,
  100.00% {
    transform: none;
    filter: hue-rotate(0) drop-shadow(0 0 0 transparent);
  }

  33.43%,
  41.57% {
    transform: translateX(var(--glitch-x-1));
    filter: hue-rotate(var(--glitch-hue-1))
      drop-shadow(-2px 3px 0 rgb(255 0 0 / 0.1));
  }

  66.77%,
  74.90% {
    transform: translateX(var(--glitch-x-2));
    filter: hue-rotate(var(--glitch-hue-2))
      drop-shadow(-3px -2px 0 rgb(0 0 255 / 0.1));
  }
}

@keyframes glitch-7 {
  0.00%,
  33.33%,
  40.48%,
  66.67%,
  73.81%,
  100.00% {
    transform: none;
    filter: hue-rotate(0) drop-shadow(0 0 0 transparent);
  }

  33.43%,
  40.38% {
    transform: translateX(var(--glitch-x-1));
    filter: hue-rotate(var(--glitch-hue-1))
      drop-shadow(0px -3px 0 rgb(0 0 255 / 0.1));
  }

  66.77%,
  73.71% {
    transform: translateX(var(--glitch-x-2));
    filter: hue-rotate(var(--glitch-hue-2))
      drop-shadow(4px 1px 0 rgb(255 0 0 / 0.1));
  }
}

@keyframes glitch-8 {
  0.00%,
  33.33%,
  39.58%,
  66.67%,
  72.92%,
  100.00% {
    transform: none;
    filter: hue-rotate(0) drop-shadow(0 0 0 transparent);
  }

  33.43%,
  39.48% {
    transform: translateX(var(--glitch-x-1));
    filter: hue-rotate(var(--glitch-hue-1))
      drop-shadow(-1px -1px 0 rgb(0 0 255 / 0.1));
  }

  66.77%,
  72.82% {
    transform: translateX(var(--glitch-x-2));
    filter: hue-rotate(var(--glitch-hue-2))
      drop-shadow(3px -1px 0 rgb(0 0 255 / 0.1));
  }
}

@keyframes glitch-9 {
  0.00%,
  33.33%,
  38.89%,
  66.67%,
  72.22%,
  100.00% {
    transform: none;
    filter: hue-rotate(0) drop-shadow(0 0 0 transparent);
  }

  33.43%,
  38.79% {
    transform: translateX(var(--glitch-x-1));
    filter: hue-rotate(var(--glitch-hue-1))
      drop-shadow(1px -3px 0 rgb(255 0 0 / 0.1));
  }

  66.77%,
  72.12% {
    transform: translateX(var(--glitch-x-2));
    filter: hue-rotate(var(--glitch-hue-2))
      drop-shadow(1px 1px 0 rgb(255 0 0 / 0.1));
  }
}

@keyframes glitch-10 {
  0.00%,
  33.33%,
  38.33%,
  66.67%,
  71.67%,
  100.00% {
    transform: none;
    filter: hue-rotate(0) drop-shadow(0 0 0 transparent);
  }

  33.43%,
  38.23% {
    transform: translateX(var(--glitch-x-1));
    filter: hue-rotate(var(--glitch-hue-1))
      drop-shadow(3px -1px 0 rgb(255 0 0 / 0.1));
  }

  66.77%,
  71.57% {
    transform: translateX(var(--glitch-x-2));
    filter: hue-rotate(var(--glitch-hue-2))
      drop-shadow(-3px 2px 0 rgb(255 0 0 / 0.1));
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
