/* estilo para el body*/

body {
    border-radius: 7px;
    border: 5pt solid silver; /* borde metálico */
    background: linear-gradient(to bottom, #000000, #0d0d2b); /* fondo galáctico */
    text-align: center;
    margin: auto;
    padding: 20px; /* mejor que 'auto' para dar espacio interno */
} 

/*estilo para el logo */

img {
        margin: auto;
}

/*estilo para encabesados */

h1,h2,h3,h4,h5,h6 {
 color: silver;   
font-family: Arial, Helvetica, sans-serif; 
font-weight: 800;
font-style: italic;
}

/*estilo para parrafos */

p {
color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 15pt;
font-weight: 500;
} 

/*estilo para binculos  */
a {
    color: gold;
font-size: 16pt;    
  margin: 16px;
  text-decoration: none;
  font-weight: bold;
font-family: Georgia, 'Times New Roman', Times, serif;
}

a:hover {
  color: #FFD700;
  text-shadow: 0 0 5px gold;
}

/*estilo para tabla  */
table {
border-radius: 2px;  
border-color: silver;
    border-width: 5pt;
    border-style: solid;
background-color: rgba(0, 0, 139, 0.5);
color: silver;
    margin: 20px auto;
    border-collapse: collapse;
}

table td, table th {
    padding: 12px 20px;
    text-align: center;
}     
    

/*estilo para el reproductor */

#player {
  text-align: center;
  margin-top: 30px;
}

#playPause {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* circular */
  background: linear-gradient(135deg, #FFD700, #DAA520);
  color: #000;
  border: 2px solid #FFD700;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

#playPause:hover {
  background: linear-gradient(135deg, #FFF8DC, #FFD700);
}

.volumenControles button {
  background: linear-gradient(135deg, #FFD700, #DAA520);
  color: #000;
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 18px;
  margin: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.volumenControles button:hover {
  background: linear-gradient(135deg, #FFF8DC, #FFD700);
}