/* HOME SECTION */
.home-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--background-gradient);
    box-shadow: var(--box-shadow-border);
}

.home-content {
    text-align: left;
}

/* INTRO TEXT */
.intro {
    font-size: var(--font-size-2xl);
    font-weight: 400;
    color: var(--font-weight-4);
    margin-bottom: 1rem;
}

/* HIGHLIGHTED GREEN TEXT */
.highlight-green {
    background: rgba(0, 255, 100, 0.2);
    color: var(--font-highlight-1);
    padding: 5px 10px;
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-7);
}

/* MAIN HEADING */
.main-heading {
    font-size: var(--font-size-7xl);
    font-weight: var(--font-weight-7);
    line-height: 1.2;
    color: var(--font-primary-clr);
    margin-bottom: 2rem;
}

/* DESCRIPTION TEXT */
.description {
    font-size: var(--font-size-xl);
    color: var(--font-secondary-clr);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* STATS SECTION */
.stats {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin-top: 30px;
}

/* INDIVIDUAL STAT BOX */
.stat-box {
    text-align: center;
}

.stat-box h2 {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-7);
    color: var(--font-primary-clr);
}

.stat-box p {
    font-size: var(--font-size-m);
    color: var(--font-secondary-clr);
}

@media (min-width: 1000px) {
    .home-section {
        border-radius: 0 25px 0 0;
    }
}