@font-face {
   font-family: Korinna;
   src: url(../fonts/Korinna.ttf);
}

body {
    color: white;
    padding: 0px;
    background: black url(../images/jeopardy_background.jpg) no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

#container {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.selectable {
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

#container {
    position: relative;
    font-family: Arial;
    position: absolute;
    width: 1200px;
    height: 1200px;
    margin-left: -600px;
    top: 0px;
    left: 50%;
    transform: scale(1.0);
    transform-origin: top center;
}

#board, #popup {
    position: absolute;
    background-color: #4433ff;
    outline: 12px solid black;
    width: 1800px;
    height: 920px;
    margin-left: -900px;
    left: 50%;
    top: 40px;
}

#popup {
    outline: none;
    display: none;
    font-size: 200px;
}

#clue, #question {
    vertical-align: center;
    width: 1600px;
    height: 820px;
    padding: 50px 100px 50px 100px;
    text-align: center;
}

#value {
    width: 0px;
    height: 0px;
    visibility: hidden;
}

#cluewrap {
    height: 100%;
}

#scores {
    position: absolute;
    width: 1824px;
    margin-left: -912px;
    left: 50%;
    height: 200px;
    bottom: 0px;
    outline: none;
}

.team {
    float: left;
    position: relative;
    height: 100%;
    width: 600px;
}

.podium {
    position: relative;
    left: 50%;
    margin-left: -255px;
    border: 10px solid black;
    height: 300px;
    width: 500px;
    border-radius: 25px;
    background-color: #bb0000;
}

#team2 .podium {
    background-color: #bbbb00;
}

#team3 .podium {
    background-color: #0000bb;
}

.screen, .name {
    position: absolute;
    width: 400px;
    height: 80px;
    left: 50%;
    top: 30px;
    margin-left: -200px;
    background-color: black;
    text-align: center;
    font-size: 70px;
    line-height: 80px;
    overflow: hidden;
}

.name {
    top: 110px;
    max-height: 80px;
    color: white;
    font-size: 50px;
    background-color: transparent;
    text-outline: white;
    text-shadow: 3px 4px black;
}

.square, .category {
    text-align: center;
    font-size: 90px;
    float: left;
    font-family: Arial;
    font-weight: bold;
    overflow: auto;
    outline: 6px solid black;
}

.category {
    font-size: 40px;
    border-bottom: 10px solid black;
}

.val, .catname, #cluetext, #questiontext {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 5px 5px black;
}

.catname {
    top: 50%;
}

#cluetext {
    text-shadow: 15px 15px 20px black;
}

#questiontext {
    color: black;
    text-shadow: none;
}

.val {
    color: yellow;
    text-shadow: 7px 7px black;
}

#question {
    display: none;
}

.ctrl #clue {
    height: 650px;
    padding: 0px 100px 0px 100px;
}

.ctrl #question {
    display: block;
    height: 300px;
    padding: 0px 100px 0px 100px;
}

:-webkit-full-screen #container {
  width: 100%;
  height: 100%;
}

#cluetext div {
    width: 100%;
    height: 920px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.ctrl #cluetext div {
    height: 650px;
}