.container {
    background: white;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 100%;
    box-shadow: 0px 0px 16px 0px #000;
}

body {
    background: linear-gradient(0deg, #505050, #1d1d1d);
    margin: 0px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

header {
    /*background: url("uac_header_new2.png");
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    height: 400px;*/
}

.header_bg {
    background: url(uac_header_new3.png);
    height: 450px;
    background-position: center;
    background-size: cover;
    background-position-y: calc(50% - 50px);
}

header {
    background: linear-gradient(0deg, #db7c48, #8d6157);
    position: relative;
}

header .logo {
    position: absolute;
    bottom: 0px;
    font-family: "Open Sans";
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    width: 100%;
    color: #fff;
    text-shadow: 0px 4px 10px #000;
    background: #880016d1;
    padding: 10px 0px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 6px 0px #000;
}

.nav_links a {
    padding: 10px 14px;
    display: inline-block;
    text-decoration: none;
    color: #3d3d3d;
    font-weight: 500;
    transition: 0.1s;
}

.nav_links a:hover {
    background: #fc8a8a47;
    transition: 0.1s;
}

.nav_links {
    background: #eee9df;
    box-shadow: 0px 1px 5px 0px #000;
}

.alert {
    background: #b22626;
    color: #fff;
    padding: 12px 12px;
    text-shadow: 2px 2px 5px #00000047;
    border: 1px solid #00000036;
    box-shadow: 0px 1px 8px 0px #0000008f;
}

.alert h2:first-child {
    margin-top: 0px;
}

.alert a, .footer a {
    color: #cfcccc;
}

.alert a:hover, .footer a:hover {
    color: #fff;
}

a.button {
    text-decoration: none;
    color: #fff;
    background: #3a3a3a;
    padding: 7px 12px;
    display: inline-block;
    box-shadow: 0px 1px 2px 1px #0000005c;
    transition: 0.2s;
    border: 1px solid #000;
}

a.button:hover {
    background: #4d4d4d;
    transition: 0.2s;
    box-shadow: 0px 1px 5px 1px #0000008d;
}

.content {
    padding: 20px;
}

.footer {
    background: #b22626;
    color: #fff;
    font-weight: 500;
    padding: 8px 10px;
    text-align: center;
    box-shadow: 0px 0px 5px 0px #000;
}

.panel {
    background: #00000012;
    padding: 12px 14px;
    border: 1px solid #00000017;
    box-shadow: 0px 1px 16px 0px #0000001f;
}

.panel p:first-child {
    margin-top: 0px;
}

.panel p:last-child {
    margin-bottom: 0px;
}

.faq-q {
    font-weight: bold;
    font-size: 17px;
    text-shadow: 2px 2px 0px #0000000d;
    border-bottom: 2px solid #b22626;
    padding-bottom: 11px;
}

.faq-q::before {
    content: 'Q: ';
    opacity: 0.6;
}

.faq-a::before {
    content: 'A: ';
    opacity: 0.7;
    text-shadow: 2px 2px 0px #0000000d;
    font-weight: bold;
}

.archive_grid {
    display: flex;
}

.archive_grid .grid_item {
    display: flex;
    flex-direction: column;
    width: 33%;
    margin: 6px;
}

/*header .logo::before, header .logo::after {
    content: '.';
    background: #88192c;
    display: block;
    color: transparent;
    text-shadow: none;
    width: 200px;
    height: 30px;
    position: absolute;
    bottom: -30px;
    left: calc((50% - 100px) + 50px);
    transform: skewX(-45deg);
}

header .logo::after {
    left: calc((50% - 100px) - 50px);
    transform: skewX(45deg);
}*/

a.button.button_fullwidth {
    width: -webkit-fill-available;
    text-align: center;
}

header .logo_bg_accent {
    position: absolute;
    height: 30px;
    width: 300px;
    left: calc(50% - 150px);
    background: orange;
    bottom: 88px;
}

.background_pattern {
    background-image: url(checkerboard3.png);
    position: absolute;
    z-index: -1;
    width: 100%;
    opacity: 0.012;
}

img.preview {
    max-width: 100%;
}

@media screen and (max-width: 700px)
{
    header {
        max-height: 300px
    }

    .header_bg {
        max-height: 300px
    }

    .archive_grid {
        display: block;
    }

    .archive_grid .grid_item {
        width: auto;
    }
}