body{
    min-height:95vh; display:flex;
	justify-content:space-evenly; 
	align-items: center; 
	flex-direction: row;
    /* font-family: 'Bebas Neue', cursive; */
    font-family: 'Press Start 2P', cursive;
    background: url(bg.png) repeat 0 0;
}


.score-board{
    height: 100%;
    padding: 10px;
    display:flex;
	justify-content: space-around; 
	align-items: center; 
	flex-direction: column;
}

canvas{
    background: #eee; display: block;
    box-shadow: 0px 3px 12px 8px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 3px 12px 8px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 12px 8px rgba(0,0,0,0.75);
}


/* The Modal (background) */
.modal {
    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: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
/* Modal Content/Box */
.modal-content {
    position: relative;

    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    text-align: center;
    animation-name: animatetop;
    animation-duration: 0.4s
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

/* The Close Button */
.modal-close{
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.button{
    margin-top:25px;
    margin-bottom: 10px;
    font-size: 17px;
    border:none;
    border-radius:10px;
    display:inline-block;
    padding:12px 30px;
    vertical-align:middle;
    overflow:hidden;
    text-decoration:none;
    text-align:center;
    cursor:pointer;
    white-space:nowrap;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    background-color:#616161;
    color:#ffffff
}