body
{
    text-align: center;
}

/*============================================================================================================
 * Styles for the Modal Box
 *==========================================================================================================*/
.modal
{
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 35vmin;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content
{
    background-color: #fefefe;
    margin: auto;
    width: 25%;
}

.modal-header
{
  background-color: darkturquoise;
  color: white;
  font-size: 4vmin;
  font-weight: bold;
  text-align: center;
  padding: 2vmin;
}

.button
{
  text-align: center;
  padding: 2vmin;
}

.new-game-button
{
  border: dark-grey 1vmin;
  border-radius: 15px;
  background-color: darkturquoise;
  color: white;
  font-family: 'Arial Rounded MT Bold', sans-sans-serif;
  font-size: 2vmin;
  text-align: center;
  width: 15vmin;
  height: 7vmin;
  cursor: pointer;
}
