.intro {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  opacity: 1;
  position: fixed;
  background-color: black;
  z-index: 100;
  transition: all 1s ease-in-out;
}

.intro h2, 
.intro p,
.title h1,
.title p {
  color: white;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  user-select: none;
}

.title {
  color: white;
  position: fixed;
  bottom: 8vh;
  right: 8vw;
  transition: all 0.5 ease-in-out;
}

.title h1 {
  font-size: 3rem;
}

.title p {
  font-size: 2rem;
}

.jump-effect {
  position: absolute;
  width: 0px;
  height: 0px;
  border: 3px solid rgba(255, 255, 255, 0.8); /* Contorno blanco */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: expandFade 0.6s ease-out forwards;
}

@keyframes expandFade {
  from {
    width: 0px;
    height: 0px;
    opacity: 1;
  }
  to {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

.toSmall {
  animation: sizeDecrement 0.2s ease-in-out forwards;
}

@keyframes sizeDecrement {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(30vw);
    opacity: 0;
  }
}

.hidden {
  animation: slideOut 1s ease-in-out forwards;
}
