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

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .background-video {
    background-image: url('media/background_desktop.mp4');
  }
}


.social-buttons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.escuchanos {
  font-family: 'Montserrat', sans-serif; /* Cambia 'Arial' a la fuente que prefieras */
  font-weight: bold;
  font-size: 24px;
  color: #ffffff; /* Puedes cambiar el color si lo deseas */
}

.social-button {
  width: 40px; /* Tamaño del botón */
  height: 40px; /* Tamaño del botón */
  margin: 0 10px;
  cursor: pointer;
  background-color: white; /* Fondo blanco */
  border-radius: 50%; /* Circular */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra */
  display: flex; /* Para centrar el icono */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  filter: brightness(100%);
  transition: transform 0.3s ease-in-out;
}

.social-button:hover {
  transform: translateY(-5px);
}

.logo_montecristo{
  position: absolute;
  top: 40%; 
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.logo_montecristo img {
  width: 230px;
  height: auto;
}



@font-face {
  font-family: 'Lato';
  src: url('media/Lato-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}



.player-container {
  position: absolute;
  top: 55%; 
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.player-button {
  width: 100px;
  height: auto;
  cursor: pointer;
  margin-right: 5px;
  margin-top: 10px;
}

#play,
#stop {
  width: 100px;
  height: 100px;
  margin-top: 10px;
  cursor: pointer;
}

#stop {
  display: none;
}


.store-buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.google-play-button-small {
  width: 160px;
  height: auto;
  margin: 0 15px;
  cursor: pointer;
  filter: brightness(100%);
  transition: transform 0.3s ease-in-out;
}

.google-play-button-small:hover {
  transform: translateY(-5px);
}

.store-buttons2 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.google-play-button-small2 {
  width: 100px;
  height: auto;
  margin: 0 15px;
  cursor: pointer;
  filter: brightness(100%);
  transition: transform 0.3s ease-in-out;
}

.google-play-button-small2:hover {
  transform: translateY(-5px);
}