.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('../images/audience.jpg') no-repeat center center/cover;
    color: var(--color-white);
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-text h1 {
    font-size: 3rem;
    margin: 8rem auto 2rem;
    text-align: center;
}

.hero-text p {
    font-size: 1.5rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.hero-buttons .btn {
    width: 15rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
