/* Piano Exercises Stylesheet */
body {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    background-color: #1e1e1e;
    color: #e6e6e6;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffda79;
}

a {
    color: #ff6f61;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #ffda79;
    border: none;
    padding: 10px 20px;
    color: #1e1e1e;
    cursor: pointer;
}

button:hover {
    background-color: #ff6f61;
}

.exercise-list {
    list-style-type: none;
    padding: 0;
}

.exercise-list li {
    background-color: #333;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #7f8c8d;
}

svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}