/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.btn {
  background-color: #121921; /* El fondo oscuro de tu paleta */
  color: #ddd3c4 !important; /* El color crema */
  border: 2px solid #8b2e34; /* El borde rojo granate */
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 4px 4px 0px #5a6776; /* Sombra gris azulada */
}

.btn:hover {
  background-color: #8b2e34; /* Cambia a rojo al pasar el mouse */
  color: #121921 !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #ddd3c4; /* Sombra cambia a crema */
}.music-player {
  background-color: #121921;
  border: 1px solid #8b2e34;
  padding: 10px;
  position: fixed; /* Se queda fijo abajo a la derecha */
  bottom: 20px;
  right: 20px;
  z-index: 100;
  box-shadow: 4px 4px 0px #5a6776;
  text-align: center;
  font-size: 12px;
}