body {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    color: rgb(179, 179, 179);
    background-color: rgb(33, 33, 33);
}

#closeUp {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
    cursor: pointer;
}

#closeUp.show {
    opacity: 1;
}

#closeUpImage {
    border: 1px solid black;
    border-radius: 12px;
    transform: scale(0.5);
    transition: transform 0.2s ease-in-out;
}

#closeUpImage.show {
    transform: scale(1);
}

.menu {
    font-size: x-large;
    font-weight: bold;
    background-color: rgb(12, 12, 12);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 80px;
    border-bottom: 2px solid black;
    position: sticky;
    top: 0; 
}

a {
    text-decoration: none;
    color: rgb(179, 179, 179);
}

a:hover {
    color: white;
}

.content {
    padding-top: 20px;
    width: 100%;
    min-height: fit-content;
    height: 100vh;
    text-align: center;
    background: linear-gradient(120deg, #1db954, #191414);
}

.title {
    font-weight: bold;
    font-size: 60px;
    color: white;
}

.tops {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.topArtists, .topTracks {
    border: 2px solid black;
    border-radius: 12px;
    width: 620px;
    height: 720px;
    text-align: center;
    font-size: xx-large;
    padding: 0 20px;
    background-color: rgb(33, 33, 33);
    color: rgb(179, 179, 179);
    box-shadow: 0 0 10px rgb(33, 33, 33);
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.header {
    margin: 30px;
}

.list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list > div:nth-child(even) {
    background-color: rgb(48, 48, 48);

}

.rank {
    box-sizing: border-box;
    height: 60px;
    width: 100%;
    border: 2px solid black;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    background-color: #282828;
    padding-right: 10px;
}

.order-image {
    display: flex;
    align-items: center;
    min-width: 70px;
    cursor: pointer;
}

.order {
    font-size: 24px;
    color: white;
    text-align: center;
}

.rank-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-left: 10px;
}

.name, .timesPlayed {
    font-size: x-large;
    color: rgb(179, 179, 179);
    margin-left: 20px;
    flex-grow: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#siteStats{
    width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: x-large;
    font-weight: bold;
    background-color: rgb(22, 22, 22);
    box-shadow: 0 0 40px rgb(22, 22, 22);

}