body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: aquamarine;
    padding: 20px;
    margin: 0 auto;
}

header{
    background-color: rgb(84, 254, 84);
    color: white;
    padding: 20px;
    text-align: center;
    border: 2px solid black;
    border-radius: 10px;
}


table{
    background-color: whitesmoke;
    border-radius: 10px;
    width: 100%;
}

th, td {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid black;
}

th {
    background-color: gray;
    color: white;
    font-weight: bold;
}
.song-item:hover{
    background-color: aquamarine;
}

.Rank{
    color: rgb(73, 77, 73);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
footer{
    text-align: center;
    font-weight: bold;
    padding: 10px;
}