/* --- Hero Style --- */

#title {
    color: white;
    font-size: 78px;
    font-weight: 900;
    margin: 0;
    line-height: 100%;
}

.hero {
    background-image: url("../assets/images/background.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.hero_wrapper {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin-top: 20vh;
    gap: 1em;
}

.inner_hero_wrapper {
    display: flex;
    flex-direction: column;
    width: 75%;
    gap: 1em;
}

.inner_hero_wrapper p {
    color: white;
    margin: 0;
    text-align: left;
}

@media (max-width: 800px) {
    #title {
        display: none;
    }

    #intro {
        display: none;
    }

    .inner_hero_wrapper {
        justify-content: center;
        align-items: center;
    }

    .hero_wrapper {
        justify-content: center;
        align-items: center;
        margin: 0;
    }
}