@font-face {
    font-family: fair2muli;
    src: url(/font/fair2muli-Bold.otf);
}

body {
    font-family: sans-serif;
    font-size: 13px;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background-color: black;
}

#messageContainer {
    position: absolute;
    bottom: 1vh;
    width: 100%;
}

#addMessage {
    position: relative;
    display: none;
    justify-content: center;
    /* background: #0f0; */
    padding: 0;
    padding-right: 40px;
    margin: 0;
    /* transition: transform 2s; */
    transform: scale(1);
}

#messageOverlay {
    position: absolute;
    color: #e98900;
    /* background: #0f0; */

}

#messageOverlay textarea::placeholder,
#messageOverlay input::placeholder {
    color: #e98900;
}

#messageOverlay textarea,
#messageOverlay input {
    font-size: 1em;
    padding: .5em;
    resize: none;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Muli";
}

#messageOverlay textarea {
    width: 360px;
    position: absolute;
    left: -190px;
    top: 25px;
}

#messageOverlay input {
    position: absolute;
    left: -10px;
    width: 180px;
    top: 100px;
    text-align: right;
}

#textCounter {
    position: absolute;
    font-size: .7em;
    color: rgba(255, 255, 255, 0.5);
    top: 75px;
    right: -180px;
    text-align: right;
}

#submitButton {
    position: absolute;
    left: 208px;
    cursor: pointer;
    height: 160px;
}

canvas {
    position: absolute;
    top: 0px;
}



#behindTheGame {
    opacity: 0;
    /* display: none; */
    visibility: hidden;
    transition: opacity 0.4s;
    position: absolute;
    top: 0;
    background: #03334a;
    width: 80vw;
    margin: 6vh 6vw;
    height: 80vh;
    z-index: 9999;
    padding: 4vh 4vw;
    overflow-y: auto;
    text-align: center;
    color: #fff;
    font-size: 1.4em;
}

#behindTheGame a {
    color: #fff;
}

#behindTheGame h1 {
    color: #fff;

}

#behindTheGame p:last-of-type {
    padding-bottom: 4em;
}

#behindTheGame button {
    background: white;
    border: none;
    padding: .5em;
    margin: 1em;
    font-size: 1.5em;
    color: #03334a;
}

#behindTheGame iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
}

#behindTheGame .aspect-ratio {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 4em;
}

#behindTheGame .videoDiv {
    padding: 0 10vw;
    opacity: 1;
}

#behindTheGame .finePrint {
    font-size: 0.8em;
    font-weight: normal;
}

@media only screen and (max-width: 910px) {
    #behindTheGame .videoDiv {
        padding: 0 2vw;
    }
}

@media only screen and (min-width: 1400px) {
    #behindTheGame .videoDiv {
        padding: 0 20vw;
    }
}