body {
    font-family: 'consolas', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 200;
    background: url('pianoart2-min.webp') center/cover no-repeat fixed;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(252, 249, 228, 0.592); /* Adjust the alpha value for transparency */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: auto;
    margin-top: 25vh; /* Adjust the value to move it upward */
}

h1 {
    font-family: 'Montserrat', cursive;
    font-weight: 800;
    color: #040404fe;
}

button {
    padding: 10px;
    font-size: 16px;
    font-family: consolas;
    border-radius: 20px;
    cursor: pointer;
    background-color: #744e74;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color:  #362336;
    box-shadow: 0 0 20px 5px rgba(60, 57, 87, 0.7);
}

#musicPlayerContainer {
    margin-top: 20px;
}
