#winnerScreen, #rules {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #winnerMessage {
    color: #f8f8f2;
    font-size: 36px;
    margin-bottom: 20px;
  }
  
.messageContainer button {
  width: 100%;
}

  #playAgainButton {
    /* background-color: lightblue; */
    background-color: #8be9fd;
    margin-bottom: 5px;
  }
  #resetScoreButton {
    margin-top: 5px;
    background-color: #ff5555;
  }
  .messageContainer {
    background-color: rgba(40, 42, 54, 0.70);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-radius: 5px;
    border: solid 5px #282a36;
    max-width: 50vw;
  }