.header_wrapper,
.mobile_menu_wrapper,
.footer_wrapper {
    display: none;
}

html,
body {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: .025rem;
    background-color: #eee;
}
main {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 10px;
}
main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background-image: url(/imageserver/UserMedia/goodwill/uc_bg.webp);
    background-size: cover;
    background-position: 20% 20%;
}
.uc-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 25px;
    text-align: center;
    background-color: #fff;
    z-index: 1;
}
.uc-logo {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
}
h1 {
    font-size: 2.3rem;
    line-height: 1.05em;
    font-weight: 800;
    margin: 20px auto 30px;
    text-transform: uppercase;
}
.h1-alt {
    display: block;
    font-weight: 300;
    font-size: .8em;
    line-height: 1.05em;
    margin-bottom: 10px;
    color: #125384;
    text-transform: none;
}
p {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 500;
}
.site-button-wrapper {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}
.site-button {
    display: block;
    font-size: .95rem;
    max-width: fit-content;
    width: 100%;
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid #333;
    font-weight: 500;
    color: #111;
    transition: color .2s, background-color .2s;
}
.site-button:hover,
.site-button:focus {
    background-color: #333;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 750px) {
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 550px) {
    h1 {
        font-size: 1.7rem;
    }
    .site-button-wrapper {
        flex-direction: column;
        align-items: center;
    }
}