.title {
    margin: 15px 0;
    text-align: center;
}

.title-text {
    color: var(--accent-color);
    font-size: 3rem;
}

.intro-text {
    padding: 0 10%;
}

.charts-hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px auto;
    flex: 1;
}

.odometer-digit > * {
    width: fit-content;
    font-size: 2.8rem;
}

.odometer-formatting-mark {
    font-size: 2rem !important;
}


/* Playlist cover and description */
.cover-container {
    box-shadow: #000000 0px 0px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 300px;
    height: 300px;
    overflow: hidden;
    cursor: zoom-in;
}

#playlist-description {
    text-align: center;
}


@media screen and (max-width: 800px) {
    .charts-hero {
        flex-direction: column;
        gap: 0px;
    }
    .counter-container {
        margin: 10px 0;
        padding: 10px 0 0;
        min-width: 60%;

        & span {
            font-size: 2rem;
        }

        &.playlist-info {
            width: 100%;
        }

        & .hero-title {
            font-size: 1rem;
        }
    }
    .cover-container {
        width: 200px;
        height: 200px;

        & img {
            width: 100%;
            height: 100%;
        }
    }

    #playlist-description {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .odometer-digit > * {
        font-size: 0.1rem;
    }
}