body {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}
main {
  flex: 1;
}
#reproductor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
#logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}
#reproductor {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  background-image: url("/img/fondomedio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  cursor: pointer;
  padding: 10px;
}
#playBtn:hover {
  color: #ff0000;
}
#volumeControl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin-top: 20px;
}
#volumeControl input[type='range'] {
  width: 100%;
}
#trackInfo {
  text-align: center;
  margin-top: 20px;
}
#trackTitle {
  font-size: 16px;
  color: #333;
}
/* Estilos para botones de redes sociales añadidos aquí */
.social-buttons {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 20px;
}

.social-button {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
}

.social-button .logo {
font-size: 20px;
margin-right: 8px;
}

.social-button.twitter {
background-color: #1DA1F2;
}

.social-button.facebook {
background-color: #4267B2;
}

.social-button i {
margin-right: 8px;
}
.social-button.programming {
background-color: #4CAF50; /* Un color verde para el botón de tarifas */
}
@media (max-width: 768px) {
.social-buttons {
  align-items: center; /* Centra los botones en móviles */
}
}
/* ... Resto de tu CSS existente ... */

/* Estilos para el footer */
.site-footer {
background-color: #333; /* Cambia el color de fondo según tu preferencia */
color: #fff; /* Color del texto */
padding: 20px;
text-align: center;
font-size: 14px;
}

.site-footer p {
margin: 10px 0;
}

.created-by {
margin-top: 20px;
}

.created-by a {
display: inline-block;
vertical-align: middle;
}

.created-by img {
width: 100px; /* Ajusta el tamaño de la imagen según sea necesario */
}
.site-footer {
background-color: #f5f5f5; /* Color de fondo blanco */
color: #333; /* Color del texto */
padding: 20px;
text-align: center;
font-size: 14px;
border-top: 1px solid #ddd; /* Borde superior para definir el footer */
}

.created-by img {
width: 100px;
}