/* gameOverWindow container */
.gameOverWindow {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* gameOverWindow content */
  .gameOverWindow-content {
    font-family: 'Roboto', sans-serif; /* Change to desired font */
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: max-content; /* Could be more or less, depending on screen size */
    padding-left: 50px; /* Add extra padding to make it wider */
    padding-right: 50px; /* Add extra padding to make it wider */
  }