:root{
    --accent: rgb(255, 140, 159);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(20, 20, 20);
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/></filter><rect width="100" height="100" fill="rgb(20,20,20)" filter="url(%23noise)"/></svg>');
    background-blend-mode: overlay;
    background-size: auto;
    color: white;
    font-family: Helvetica, sans-serif;
    padding: 1rem;
    margin-top: 50px;
    box-sizing: border-box;
}

header {
    background-color: white;
    text-align: center;
    color: black;
    padding: 10px;
    border: solid black 2px;
    border-radius: 20px;
    margin: 10px;
}

table {
    background-color: white;
    width: 100%;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: solid black 2px;
}

th {
    background-color: slategray;
    color: white;
    font-weight: bold;
}

tr:hover {
    background-color: rgb(241, 183, 188);
}

.rank {
    font-size: 20px;
    font-weight: bold;
    color: slategray;
    text-align: center;
}

.song-title {
    font-size: 18px;
    font-weight: bold;
    color: navy;
    margin: 5px;
}

.artist {
    font-size: 16px;
    font-style: italic;
    color: darkslategrey;
}

footer {
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 5px;
}