.page_header {
    height: 98vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.heading_container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page_header h1 {
    color: var(--light-text);
    font-size: 84px;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: var(--shadow);
    font-weight: 600;
}

.page_header .content_div {
    justify-content: center;
    align-items: center;
}

.page_header p {
    color: var(--light-text);
    margin-bottom: 35px;
    display: block;
    text-shadow: var(--shadow);
    text-align: center;
    max-width: 450px;
}

/* .page_header .primary_button {
    background-color: transparent;
    border: 1px solid var(--accent);
    margin-top: 55px;
} */

@media (max-width: 768px)
{
    .page_header {
        height: unset;
        min-height: 90vh;
    }

    .page_header h1 {
        font-size: 39px;
    }


}

