


body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    background-image: url('bg.jpg');
    background-size: cover;
    color: black;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-family: "Monsieur La Doulaise", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    color: rgb(163, 96, 45);
    position: relative;
    top: 70px;
    text-shadow: 1px 3px 3px rgb(110, 61, 24);
}

.recuadro {
    background-image: url('des.jpg');
    background-size: cover;  
    background-position: center;
    border-radius: 10px;
    padding: 25px;
    width: 80%;
    height: 600px;
}

a {
  color: rgb(112, 76, 39);
}

ul {
  list-style-image: url('favicon.jpg');
}

p {
   font-family: "MonteCarlo", cursive;
   font-weight: 400;
   font-style: normal;
   font-size: 25px;
   line-height: 1.6;
   color: rgb(179, 139, 99);
   position: relative;
   left: 80px;
}

.intro {
  border-left: 3px solid rgb(166, 142, 118);
  font-style: italic;
  background-color: rgba(196, 182, 150, 0.722);
    background-position: center;
    padding: 3px;
    width: 70%;
    position: relative;
   top: 80px;

}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none; 
        }

        
        .player-container {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 60px;
            padding: 15px 20px;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
            max-width: 100px;
            max-height: 160px;
             position: fixed;
           top: 20px;
    right: 1180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 9999;
        }

        
        .music-btn {
            width: 60px;
            height: 60px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.2s ease;
            box-shadow: none;
            border: none;
            background: transparent;
        }

        /* Efecto hover/activo para feedback táctil */
        .music-btn:hover {
            transform: scale(1.20);
          
        }

        .music-btn:active {
            transform: scale(0.97);
        }

        /* Responsive */
        @media (max-width: 550px) {
            .player-container {
                padding: 20px 25px;
            }
            .music-btn {
                width: 140px;
                height: 140px;
            }
            
        }
