/* ============================================================
   Hero Section
============================================================ */

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;

    background-color: var(--brand-blue);
}

.index-container {
    padding: 0 40px;
    text-align: center;

    color: #ffffff;
}

.hero-title {
    font-size: 48px;
    margin: 18px 0;
}

.hero-title-highlight {
    color: var(--brand-yellow);
}

.hero-description {
    font-size: 24px;
}

.hero-description-highlight {
    color: var(--brand-yellow);
    text-decoration-thickness: 2px;
}

/* ============================================================
   Search
============================================================ */

.search {
    width: 800px;
}

/* ============================================================
   Responsive
============================================================ */

@media (max-width: 768px) {
    .search {
        width: 100%;
    }

    .index-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }
}