.content-area {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    height: calc(100dvh - (var(--desktop-content-vertical-padding) * 2));
}
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 30dvh;
    border-radius: var(--image-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.contact-raised-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1em;

    width: calc(100% - var(--contact-raised-button-dim-less-than-container));
    height: calc(100% - var(--contact-raised-button-dim-less-than-container));
    border-radius: var(--contact-raised-button-corner-radius);

    text-shadow: 0 1px 1px rgb(var(--contact-raised-button-text-color),0.3);
    color: var(--contact-raised-button-text-color);
    
    
    background-color: rgba(var(--distinct-primary-accent-color), 0.5);
    box-shadow: var(--contact-raised-button-shadow);
}
@media (max-width: 1000px) {
    .contact-raised-button {
        font-size: .8em;
    }
}
@media (max-width: 768px) {
    .contact-raised-button {
        font-size: 0.7em;
    }
    .contact-wrapper {
        height: 25dvh;
    }
    .content-area {
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        height: calc(100dvh - var(--mobile-nav-bar-height) - (var(--mobile-content-vertical-padding) * 2));
    }

}