#games-page{
    min-height:100%;
    background-color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
}

#games-container{
    margin-top:50px;
    width:100%;
    padding:15px;
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

@media (max-width: 1100px) {
    #games-container{
        margin-top:100px;
    }
}

@media (max-width: 768px) {
    #games-container{
        margin-top:300px;
    }
}

#games-container h1{
    width:100%;
    text-align:center;
    color:white;
    font-size:600%;
    font-weight:bold;
    z-index:5;
    margin-bottom:50px;
}

#jobBtn{
    color:inherit;
    text-decoration: none;
    z-index:10;
}

#jobBtn:hover{
    background-color:#ccc;
    transition: all 0.2s;
}

#job-top-info{
    display:flex;
    flex-direction:row;
    width:100%;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    z-index:5;
    background-color:rgba(0,0,0,0.8);
}

.job-info-box{
    text-align:center;
    padding:10px;
    font-size:150%;
    z-index:10;
    color:white;
}

.job-listing{
    z-index:10;
    min-height:250px;
    background-color:white;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
    padding:10px;
    margin:25px;
}

.job-listing h1{
    width:100%;
    border-bottom:2px solid black;
    font-size:250%;
    font-weight: bold;
}

#pageTitle{
    z-index:5;
    margin-top:50px;
    font-size:400%;
    color:white;
}

#jobForm{
    z-index: 5;
    background-color:white;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px;
    padding:10px;
    display:flex;
    justify-content: center;
    flex-direction:column;
    margin-top:50px;
    margin-bottom:50px;
}

#jobForm input[type=text], input[type=email]{
    width:60%;
    min-width:100px;
    margin-bottom:10px;
}

#jobForm h2{
    font-size:190%;
    font-weight:bold;
    margin-top:25px;
    width:90%;
}

#jobForm h2:first-of-type {
    border-top: 2px solid black;
    padding-top:35px;
}

#jobForm textarea{
    height:200px;
}

#tc{
    width:80%;
    text-wrap:wrap;
}

#tc input{
margin-bottom:5px;
}

#tc label{
    margin-bottom:15px;
}

.g-recaptcha{
    margin-bottom:25px;
}

#jobForm input[type=submit]{
    width:200px;
}

#jobOutcome{
    z-index:5;
    font-weight:bolder;
    font-size:200%;
}