html, body {
  height: 100%;
  width: 100%;
  background-color: #111524;
  color: #e6e6e6;
}


*{
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100 !important;
}

.header{
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1f1f1f;
  text-align: center;
  height: 30px;
  font-size: 13px;
  color: #d6d6d6;
}

.menu{
  background-color: #1f1f1f;
  width: 100%;
  font-size: 20px;
}

.topHalf{
  width: 96%;
  display: inline-block;
  padding-left: 2%;
  font-size: 20px !important;
  font-family: calibri !important;
}

.snakeWindow{
  width: 70%;
  float: left;
  border-right: 1px solid white;  
  background-color: #111524;
  border-bottom: 1px solid white;
  height: 450px;
  overflow: auto;
  text-align: center;
}

.countDown{
  font-size: 70px !important;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  color: white;
  background-color: #00000000;
  position: fixed;
  z-index: 10;
}

.snakeCanvas{
  border: 1px solid black;
  background-color: #1f2332;
}

.outWindow{
  width: 27%;
  padding-left: 2%;
  float: left;
  height: 100%;
  border-bottom: 1px solid white; 
  background-color: #151823;
  overflow: auto;
}

.scoreMultTable{
  margin: auto;
}

.scoreMultTable th{
  text-align: center;
  color: #151823;
  height: 50px;
  width: 50px;
  border: 1px solid #ababab;
}

.image{
  margin: auto;
  width: 200px;
  height: 200px;
  border: 1px solid #ababab;
}

.bottomHalf{
  width: 96%;
  display: inline-block;
  padding-left: 2%;
  padding-top: 10px;
  max-height: 35%;
  overflow: auto;
  font-size: 20px !important;
  font-family: calibri !important;
}

.questionsWindow{
  width: 70%;
  float: left;
  border-right: 1px solid white;  
  background-color: #1f2332;
  border-bottom: 1px solid white;
  overflow: auto;
}

.canvas {
    background-color: #eee;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer{
  font-size: 13px !important;
  margin: auto;
  text-align: center;
  float: none;
  width: 100%;
  height: 2%;
  position: fixed; 
  bottom:0%;
  color: white;
  background-color: #080808;
}

.runButton{
  background-color: #1c2333;
  border: 2px solid #4CAF50;
  color: white;
  padding: 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin-left: 4px;
  transition-duration: 0.4s;
  cursor: pointer;  
  width: 100px;
}

.runButton:hover {
  background-color: #4CAF50;
}

.dropbtn {
  background-color: #1c2333;
  border: 2px solid #1f1cd9;
  color: white;
  padding: 4px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px !important;
  font-family: Arial !important;
  margin-left: 4px;
  transition-duration: 0.4s;
  cursor: pointer;  
  width: 100px;
}

.dropbtn:hover {background-color: #1f1cd9;}

.highScore{
  width: 30%;
  background-color: #222;
  border: 2px solid yellow;
  font-size: 20px;
  text-align: center;
  padding: 20px;
  position: absolute;
  top: 40%;
  left: 35%
}

