canvas {
	background-color: white;
    display: inline-block;
}

p.h3 {
    font-size: 70px;
}

p.h4 {
    font-size: 50px;
}
p.h5 {
    font-size: 40px;
}
p.h6 {
    font-size: 30px;
}

#menu {
    min-width: 150px;
    min-height: 150px;
    max-width: 150px;
    max-height: 150px;
    padding: 0;
    margin: 0;
}

#menu:hover {
    opacity: 0.5;
}

#title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 90px;
}

#buttons {
    flex: 1 0 0;
}

#modes {
    flex: 1 0 0;
}

#game {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.selected {
	background-color: green;
}

.notSelected {
	background-color: red;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.overlayInterface {
    height: 500px;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    background-color: white;
}

/* End Game Interface*/
#closeButton {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

#endGame {
    visibility: hidden;
}

#submitScore {
    height: 100px;
}
