#game_over_message
{
  display: none;
  position: fixed;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #3cbcfc;
  width: 92%;
  height:200px;
  border: 5px solid black;
  box-shadow: 10px 10px 0px 0px gray;
}

.game_over_message > div
{
  color:black;
}

#game_over_title
{
  color: #fff;
  font-size: 35px;
}

#game_over_button_container
{
  display: flex;
  position: absolute;
  text-align: center;
  left: 50%;
  top:65%;
  transform: translate(-50%, -50%);
}

#play_again_button, #quit_button
{
  border: 10px solid black;
  width: 200px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px;
}

#play_again_button
{
  background-color: #00a800;
  color: white;
}

#quit_button
{
  background-color: #f83800;
  color: white;
}


#play_again_button:hover
{
  background-color: #58f898;
  color: black;
  cursor: pointer;
}

#quit_button:hover
{
  background-color: #f8b800;
  color: white;
cursor: pointer;  
}

#play_again_button:active
{
  background-color: #b8f818;
  color: black;
}

#quit_button:active
{
  background-color: #a80020;
  color: white;
}

#game_over_body
{
  font-size: 20px;
}