div.top_artists_container {
    position: relative;
    margin: auto;
    max-width: 850px;
}

div.top_artists {
    height: 450px;
}

.top_artist {
    position: absolute;
    padding: 5px;
    animation: zoom_in 1s ease;
}
.top_artist:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.top_artist img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.top_artists_header {
    padding: 15px;
}

@media screen and (max-width: 800px) {
    div.top_artists {
        height: 550px;
    }
}

.top_tracks_and_play_counter_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    min-height: 500px;
}

.top_tracks {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
}

.top_track {
    border: 1px solid #111111;
    background-color: #222222;
    height: 60px;
    display: flex;
    width: 100%;
    max-width: 450px;
    margin-top: 5px;
}

.top_track img {
    height: 100%;
}

.top_tracks_header {
    padding-bottom: 20px;
}

.top_track_desc {
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    padding-left: 5px;
}

.play_counter_container {
    height: 100%;
    text-align: center;
}

.play_counter {
    font-size: 60px;
    display: block;
    height: 100%;
    padding-top: 40px;
}

.artist_rank {
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: black;
    border-radius: 30px;
    position: absolute;
    top: 0px;
    font-size: 13px;
    border-width: 5px;
    border-color: red;
}

a.artist_title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    margin: auto;
    width: 100%;
    text-align: center;
    color: black;
    border-radius: 30px;
    padding: 1px;
    display: block;
}

a.artist_title.hidden {
    display: none;
}

@media screen and (max-width: 700px) {
    .top_tracks_and_play_counter_container {
        flex-flow: column;
    }
    .top_tracks_container {
        margin-bottom: 50px;
    }
}
