html,
body {
    min-height: 100%;
    height: auto;
    background: #011731;
    color: #fff;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font: 400 1rem "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #011731;
}

img {
    max-width: 100%;
}

a,
button {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    cursor: pointer;
}

sup {
    line-height: 1em;
    vertical-align: super;
    display: inline-block;
    position: static;
}

input {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

*::-moz-selection {
    color: #fff;
    background-color: #2b75aa;
}

*::-moz-selection * {
    color: #fff;
}

*::selection {
    color: #fff;
    background-color: #2b75aa;
}

*::selection * {
    color: #fff;
}

#nav{
    padding: 1rem;
    border-bottom: 1px solid #2b75aa;
    width: 100%;
    z-index: 100;
    background: #011731;
}
.inner-nav{
    text-align: center;
    display: flex;
    margin:0;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.brand{
    height: 7vh;
}
.brand img{
    height: 100%;
    width: auto;
    object-fit: contain;
}
.donate{
    padding: 0.5em 1.5em;
    background: #c00;
    border: 1px solid #b20000;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}
#main{
    background: url(bg.jpg) no-repeat;
    background-size: auto 100%;
    background-position-x: 100%;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}
.content{
    position: relative;
    z-index: 3;
    text-wrap: pretty;
}
.content img{
    margin-bottom: 1rem;
}
.content h1{
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-style: italic;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.content .donate{
    font-size: 1.1rem;
    margin: 1rem 0;
    display: inline-block;
}
#footer{
    background: #010d1b;
    border-top: 1px solid #2b75aa;
    padding: 1rem;
    text-align: center;
}
#footer h3{
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0;
}
.div{
    max-width: 80vw;
    margin: 1rem auto;
    height: 1rem;
    background: url(div.svg) no-repeat center center;
}
.disclaimer{
    text-transform: uppercase;
    display: inline-block;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    border: 1px solid #fff
}
@media screen and (max-width:990px) {
    #main::before{
        background: rgba(1, 23, 49,0.8);
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        position: absolute;
        z-index: 1;
    }
}