#hero_section{
    width: 100vw;
    background: url(/images/park.jpg) no-repeat;
    background-size: 100% auto;
    color: var(--ma-bg);
}
#hero_section .cover{
    width: 100vw;
    min-height: 60vh;
    padding-bottom: 50px;
    background: #00000099;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--cabin-ver);
}
#hero_section h1{
    font-size: 9em;
    font-weight: 100;
    text-align: center;
    margin-bottom: 5vh;
    font-family: var(--work-sans);
}
#hero_section p{
    font-size: 4.2em;
    font-weight: 100;
    text-align: center;
    width: 60%;
    line-height: 170%;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media (max-width: 700px) {
    #hero_section{
        background-size: auto 100%;
    }
    #hero_section .cover{
        height: fit-content;
    }
    #hero_section h1{
        font-size: 8em;
    }
    #hero_section p{
        width: 80%;
    }
}