/* The Modal (background) 
taken from https://www.w3schools.com/howto/howto_css_modals.asp
*/
.modal,.modal2,.modal3 {
    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 */
  }
  /* Modal Content/Box */
  .modal-content {
    background-color: #4d4b4b;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 5px;
    border: 1px solid #888;
    border-radius: 15px;
    width: 10%; /* Could be more or less, depending on screen size */
  }
  #invalidWordText {
      text-align:center;
  }
  /* CORRECT GUESS POPUP SCREEN */
.correctGuess_modal-content{
    background-color: #fdfafa;
    border: 1px solid #888;   
    border-radius: 10px;
    /*width: 20%; /* Could be more or less, depending on screen size */    
    margin: 15% auto; /* 15% from the top and centered */    
    padding: 5px;   
    display:grid;
    border-radius: 15px;
    grid-template-columns: 1fr 2fr;
    width:25%;
    transition-property: all;
    transition-duration: 1s;
}
.correctGuessStyle {
    font-size: 26px;
}
  /* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }