body{
    min-height: 100vh;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(180, 254, 181);
}

#gameContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#gameBoard{
    border:3px solid black;
    border-radius: 5px;
    background-color: rgb(238, 255, 238);
}

#scoreText{
    font-size: 50px;
}

button{
    border-radius: 8px;
    cursor: pointer;
    font-size: 22px;
    width: 130px;
    height: 50px;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
}

/* Center modal content */
.modal-content {
  background: white;
  margin: 100px auto;
  padding: 20px;
  width: 200px;
  border-radius: 4px;
  text-align: center;
}