/* Music-Themed Styling */
body {
    background: linear-gradient(135deg, #6faa82, #408f57);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

p{ 
    text-align: left;
    border-color: #222;
    border-style: double;
}

h1, h2, h3 {
    color: #096345;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

a {
    color: #0d5031;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #008cff;
}


audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    background-color: #222;
}

button {
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    transition: 0.3s ease;
}

button:hover {
    background: #ffa500;
}

ol {
    list-style: none;
    padding: 0;
}

ol li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    font-size: 18px;
}
