body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: bisque;
    padding: 20px;
    margin: 0 auto;
}

header {
    background-color: lightpink;
    color:deeppink;
    padding: 5px;
    text-align: center;
    /* border: salmon solid; */
    border-radius: 10px;
}

table{
    background-color: rgb(255, 247, 227);
    border-radius: 10px;
    width: 100%;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid bisque;
}

th {
    background-color: lightpink;
    color:deeppink;
    font-weight: bold;
}

.song-item:hover{
    background-color: rgb(255, 217, 223);
}

.rank{
    color: lightpink;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

footer{
    text-align: center;
    color:rgb(255, 172, 186);
    font-size: 14px;
    margin-top: 30px;
}