body {
    background:black;
}
.container {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    color:darkgoldenrod;
    font-family: 'treizeFonts';
}
.subcontainer {
    position:relative;
    height:auto;
}
.blinking {
    animation: blink 1s step-start infinite;
    opacity: 0.75;
}

@keyframes blink {
  50% {
    opacity: 1;
    border: 1px solid gold;
  }
}

@font-face {
    font-family: 'treizeFonts';
    src: url('fonts/Montague.ttf');
}
#header {
    text-align: center;
    font-size: 45px;
    height: 50px;
}
#schlingpot {
    text-align: center;
    font-size: 25px;
    height: 30px;
}
#gameboard {
    text-align: center;
    font-size: 25px;
}
#gameplay {
    text-align: center;
    font-size: 25px;
    position:absolute;
    left:0;
    width: calc(100% - 0% - 2px);
    display: inline;
}
#gamelog {
    text-align: center;
    font-size: 25px;
    position:absolute;
    left:calc(100% - 30% - 2px);
    width: 30%;
    display: inline;
    top: 0%;
    height:100px;
    overflow-y: auto;
}
.div-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}




