html,
body{

  position: fixed;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(46, 46, 46);

}

.gameInfo{
  overflow: hidden;
  position: fixed;
  margin-left: 30px;
  margin-top: 6px:
  font-family: "Lucida Console", monospace;
  color: rgb(106, 119, 169)
  
}

.menu{
  overflow: hidden;
  background-color: rgba(60,60,90,0.9);
  position: fixed;
  width: 60%;
  height: 40%;
  margin: 20%;
  border: 20px solid #35363b;
  border-radius: 60px;
  padding: 20px;
  align: center;
  font-family: "Lucida Console", monospace;
  top: -20%;
  }

#menuTitle{
  text-align: center;
  font-size: 600%;
  vertical-align: text-top;
  color: rgb(184, 50, 50)
}

h3{
  text-align: center;
  color: rgb(23, 176, 69)  
}

button{
  position: relative;
  width: 32%;
  font-size: 300%;
  background: rgb(12, 176, 40);
  color: rgb(42, 45, 91);
  border: 5px solid #35363b;
  border-radius: 20px;
  transition-duration: 0.4s;
}

button:hover{
  background: rgb(16, 50, 86);
  color: rgb(18, 178, 16);
}

