.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    margin-top: 5.625rem;
    gap: 2rem;
    width: 100vw;
    max-width: 100vw;
}

.hero-title {
    font-family: 'Finlandica', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    color: var(--white);
    text-align: center;
}

section {
    width: 80vw;
    max-width: 1200px;
    margin: 8rem auto;
}

.about-section {
    text-align: center;
}

.section-title {
    font-family: 'Finlandica', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: var(--black);
    text-align: center;
}

.download-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80vw;
    max-width: 1200px;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #000000;
    gap: 2rem;
}

.download-content {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-grow: 1;
}

.download-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}


@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

}