.abs{
    position: absolute;
}

.rel{
    position:relative;
}

.sta{
    position:static;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 100%;
    background-image: url("../images/landing/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    font-size: 18px;
    color: #ffffff;
}

.centerTxt{
    text-align:center;
}

#gameLogo > img{
    width: 100%;
    height: auto;
    max-width: 600px;
}

#gameLogo{
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 20px;
}

.cta{
    width:80%;
    max-width: 300px;
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    padding: 10px 0px 10px 0px;
    margin: 0 auto;
    border: solid 1px #ffffff;
    cursor: pointer;
}

.container{
    width: 100%;
    max-width: 800px;
    padding: 30px;
    padding-bottom: 35px;
    left:50%;
    transform: translateX(-50%);
}

.container p{
    margin-top: 5px;
    margin-bottom: 5px;
}

.container h2{
    margin-top: -5px;
    margin-bottom: 0px;
    font-size: 50px;
    font-weight: normal;
}


.red1{
    background-color: #c21b17;
}

.red2{
    background-color: #851714;
}

.red3{
    background-color: #a81b38;
}

.red4{
    background-color: #f1644a;
}



.table{
    width: 100%;
    margin-top: 40px;
}

.table > .row{
    font-size: 18px;
    width: 100%;
    color: #333;
    font-weight: normal;
    padding-bottom: 8px;
    padding-top: 8px;
}

.table > .row:nth-of-type(odd){
    background-color: #FFFFFF;
}

.table > .row:nth-of-type(even){
    background-color: #fff2ee;
}

.table > .row > div{
    display: inline-block;
    width:45%
}

.table > .row > div:nth-child(1){
    width:6%;
    text-align: center;
    font-weight: bold;
    color: #c21b17;
    font-size: 12px;
}
.table > .row > div:nth-child(2){
    text-align: left;
    font-weight: bold;
}

.table > .row > div:nth-child(3){
    text-align: left;
    font-weight: bold;
    text-align: right;
    padding-right: 3%;
    
}


.longMarginBottom{
    padding-bottom: 50vh;
}


@media only screen and (max-width: 500px) {
    .container h2{
        font-size: 40px;
    }
}


.mrgT{
    margin-top: 20px;
}