body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #fff;
    font-family: 'arial', sans-serif;
    overflow-x: hidden;
    
    background: #000;
}

.banner img {
    max-width: 1600px;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 75px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    -webkit-webkit-filter: brightness(.5) contrast(.9);
    -moz-webkit-filter: brightness(.5) contrast(.9);
    -ms-webkit-filter: brightness(.5) contrast(.9);
    -o-webkit-filter: brightness(.5) contrast(.9);
    -webkit-filter: brightness(.5) contrast(.9);
    filter: brightness(.5) contrast(.9);
    z-index: -100;
}

/*--------------------------------------------------------------------------------------HEADER--------------------------------------------------------------------------------------*/

header {
    width: 100%;
    height: 75px;
    position: fixed;
    background: #28292C;
    margin-top: -75px;
    z-index: 100;
    border-bottom: 1px solid gold;
}
.header-container {
    width: 95%;
    max-width: 1200px;
    height: 75px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.logo img {
    height: 65px;
    margin: 5px;
}

/*------------------------------------------------------------------------------------NAVIGATION------------------------------------------------------------------------------------*/


/*----------------------Button Attributes----------------------*/

#menu-bar {
    display: none;
}
.menu-btn {
    width: 30px;
    height: 3px;
    background: gold;
    margin: 7.5px;
}
header label {
    float: right;
    margin-top: 17px;
    cursor: pointer;
    height: 40px;
}
header label:hover {
    background: #E4001B;
    border-radius: 3px;
}

/*----------------------END: Button Attributes----------------------*/

.menu {
    position: absolute;
    top: 76px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #6194bc;
    opacity: .96;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.menu a {
    font-family: 'Arial', sans-serif;
    display: block;
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    border-bottom: 1px solid gold;
    padding: 20px;
}
.menu a:hover {
    color: gold;
    background: #E4001B
}
#menu-bar:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
@media (max-width: 509px) {
    header label {
        margin-top: 17.5px 0;
    }
}
@media (min-width: 760px) {
    .menu {
        line-height: 75px;
        background-color: transparent;
        position: static;
        width: auto;
        height: auto;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        float: right;
        text-align: justify;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .menu a {
        padding: 20px 10px;
        text-decoration: none;
        color: #fff;
        font-family: 'arial', sans-serif;
    }
    .menu a:hover {
        color: #FFD700;
        background: rgba(255, 255, 255, .1);
        border-radius: 3px;
    }
    header label {
        display: none;
    }
}

/*---------------------------------------------------------------------------------------MAIN---------------------------------------------------------------------------------------*/

#bg-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 75px;
    padding-top: 37.5px;
}
main {
    width: 100%;
    height: 100%;
}
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.main-content {
    width: 100%;
    height: 100%;
    margin: 15px auto;
    text-align: center;
    color: 	rgb(255,255,51);
}
.main-content p,
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6,
.main-content a {
    line-height: 0;
    font-family: 'Nixie One', arial;
}
.main-content p {
    font-size: 25px;
    font-weight: bold;
}
.main-content h1 {
    font-size: 90px;
    text-transform: uppercase;
    font-weight: bold;
}
.main-content h2 {
    font-size: 45px;
    text-transform: uppercase;
    font-weight: bold;
}
.main-content h4 {
    letter-spacing: 2px;
}
.main-content a {
    background: #E4001B;
    color: #FFF;
    padding: 20px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}
.main-content a:hover {
    box-shadow: 2px 2px 5px #999;
    color: #FFD700;
}
.poly {
    width: 100%;
    margin-top: -80px;
}
.patrons {
    width: 100%;
    background: #0D2235;
    height: 100%;
    margin-top: -5px;
    margin-bottom: 0px;
}
.patrons .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.guests {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}
.guests img {
    margin: 20px;
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    border-style: solid;
    border-color: gold;
    border-width: 5px;
}
.guest-container {
    width: 95%;
    max-width: 600px;
    height: 100%;
    min-height: 390px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.guest-container .guests {
    width: 100%;
    max-width: 280px;
    margin: 10px;
    font-family: 'Nixie One', arial;
    text-align: center;
}
.guest-container .guests img {
    margin: 20px auto;
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    border-style: solid;
    border-color: gold;
    border-width: 5px;
}
.guests p,
.guests h1,
.guests h2,
.guests h3,
.guests h4,
.guests h5,
.guests h6,
.guests a {
    line-height: .25;
    font-family: 'Nixie One', arial;
    letter-spacing: 2px;
}

/*------------------------------------------------------------------------------------------------Bottom Banner----------------------------------------------------------------------------------------------*/

.bottom-banner {
    width: 100%;
    background: #e4001b;
    border-top: 1px solid gold;
    border-bottom: 1px solid gold;
}
.bottom-banner .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 0;
    line-height: 1;
    font-family: 'Nixie One', arial;
}
.bottom-banner h2,
.bottom-banner h3 {
    padding: 5px;
    width: 100%;
    margin: 0;
    text-align: center;
    color: #0D2235;
    letter-spacing: 2px;
}
.bottom-banner h2 {
    color: #fff;
    padding-top: 10px;
}
.bottom-banner p {
    width: 100%;
    max-width: 390px;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}
.bottom-banner a {
    color: #fff;
    text-decoration: none;
}
.bottom-banner a:hover {
    color: #0d2235;
    font-weight: bolder;
}

/*-------------------------------------------------------------------------------------------------Win The War-------------------------------------------------------------------------------------------------*/
#winthewar {
    width: 100%;
    color: #333;
    padding-top: 90px;    
    font-family: 'Nixie One', arial;
}
#winthewar .container {
    box-sizing: border-box;
    display: block;
    background: #ddd;
    border: 5px solid gold;
}
.lion-logo {    
    display: flex;
    justify-content: center;
}
.lion-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #000;
    opacity: .7;
}
#winthewar .container h1,
#winthewar .container h2 {
    text-align: center;
    padding: 5px;
}
#winthewar .container p {
    color: #000;
    padding: 10px 20px;
    letter-spacing: 2px;
    font-weight: 500;
}
#winthewar .container a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
#winthewar .container a:hover {
    text-decoration: underline;
}
#winthewar .container h3 {
    padding: 10px 20px;
}







#accommodations {
    width: 100%;
    color: #333;
    padding-top: 90px;    
    font-family: 'Nixie One', arial;
}
#accommodations .container {
    box-sizing: border-box;
    display: block;
    background: #ddd;
    border: 5px solid gold;
}
#accommodations .container h1,
#accommodations .container h2 {
    text-align: center;
    padding: 5px;
}
#accommodations .container p {
    color: #000;
    padding: 10px 20px;
    letter-spacing: 2px;
    font-weight: 500;
}
#accommodations .container a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
#accommodations .container a:hover {
    text-decoration: underline;
}
#accommodations .container h3 {
    padding: 10px 20px;
}
.hotelinfo {    
    margin: 20px;
    width: 100%;
    max-width: 300px;
    padding: 0;
}
.hotelinfo p {
    margin: 0;
    line-height: 0;
}
/*----------------------------------------------------------------------------------------------REGISTRATION FORM----------------------------------------------------------------------------------------------*/

#registration {
    width: 100%;
    padding-top: 40px;
}
.form-container {
    width: 100%;
    max-width: 960px;
    background: rgba(40, 41, 44, .8);
    box-sizing: border-box;
    padding: 20px;
    margin: 30px auto;
    border: 1px solid gold;
}
.form-container h1,
.form-container h2 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Nixie One', arial;
    letter-spacing: 2px;
}
.form-container h1 {
    font-size: 60px;
    padding: 10px;
}
.form-container h2 {
    font-size: 30px;
    padding: 10px;
}
.form-container hr {
    width: 50px;
    height: 2px;
    background: #E4001B;
    border: none;
}
.form-container fieldset {
    border: 3px solid gold;
}
.form-container legend {
    font-size: 20px;
}
.form-container fieldset p {
    color: #E4001B;
}
.form-container input,
.form-container label,
.form-container select {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin: 20px auto;
    border-radius: 3px;
    border: none;
}
.form-container select {
    color: #E4001B;
}
.form-container .hidden {
    display: none;
}
.form-container input[type="submit"] {
    background: #E4001B;
    color: #fff;
    padding: 20px 0;
    font-family: 'Nixie One', arial;
    font-size: 20px;
    font-weight: bold;
}
.form-container input[type="submit"]:hover {
    color: gold;
    box-shadow: 2px 2px 5px #999;
}
::-webkit-input-placeholder {
    color: #E4001B;
}
:-moz-placeholder {
    /* Firefox 18- */
    color: #E4001B;
}
::-moz-placeholder {
    /* Firefox 19+ */
    color: #E4001B;
}
:-ms-input-placeholder {
    color: #E4001B;
}

/*--------------------------------------------------------------------------------------FOOTER--------------------------------------------------------------------------------------*/

footer {
    width: 100%;
    min-height: 50px;
    position: relative;
    bottom: 0;
    left: 0;
    border-top: 1px solid gold;
    background: #28292C;
    font-size: 12px;
}
.footercontainer {
    width: 95%;
    max-width: 1200px;
    height: 100%;
    min-height: 50px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.copy {
    line-height: 30px;
}
.copy a {
    color: #FFD700;
    text-decoration: none;
}
.copy a:hover {
    text-decoration: underline;
}
.socialmedia-icon img {
    width: 40px;
    margin: 5px;
}
@media screen and (max-width: 880px) {
    .lion {
        display: none;
    }
}
@media screen and (max-width: 760px) {
    .main-content p {
        font-size: 18px;
    }
    .main-content h1 {
        font-size: 70px;
    }
    .main-content h2 {
        font-size: 35px;
    }
    .main-content h4 {}
    .main-content a {
        padding: 15px;
        font-size: 20px;
    }
}
@media screen and (max-width: 580px) {
    .main-content p {
        font-size: 15px;
    }
    .main-content h1 {
        font-size: 43px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .main-content h2 {
        font-size: 26px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .main-content h3 {
        font-size: 15px;
    }
    .main-content a {
        background: #E4001B;
        color: #FFF;
        padding: 15px;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
    }
}
