h1,h2,h3,a{
  font-family: 'Righteous', cursive;
}
.active{
  background-color: #466EC3;
}

#music-player {
  display: flex;
  width: 300px;
  height: 90px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.player-button {
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.player-button img {
  width: 100%;
  height: 100%;
}

#song-name {
  font-weight: bold;
}

#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Puedes ajustar la opacidad aquí */
  z-index: -1;
}

#video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ANIMACIONES */

.fade-in1 {
	-webkit-animation: fade-in 1.7s ease-in both;
	        animation: fade-in 1.7s ease-in both;
}

.fade-in2 {
	-webkit-animation: fade-in 2s ease-in both;
	        animation: fade-in 2s ease-in both;
}
.fade-in3 {
	-webkit-animation: fade-in 3s ease-in both;
	        animation: fade-in 3s ease-in both;
}

 @-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blink-1 {
	-webkit-animation: blink-1 3.5s both infinite ease-in-out;
	        animation: blink-1 3.5s both infinite ease-in-out;
}

 @-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}



  /* Estilos personalizados para la barra de scroll */
  
  ::-webkit-scrollbar {
    width: 8px; /* Ancho de la barra de desplazamiento */
  }

  /* Color del fondo de la barra de desplazamiento */
  ::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 10px;
  }

  /* Color de la barra de desplazamiento */
  ::-webkit-scrollbar-thumb {
    background-color: rgba(70, 110, 195, .7); 
    border-radius: 10px; 
  }

  #contactImg {
    background-image: url("./img/lofi-lg.png");
  }





  