/* CSS Document */

html, body {
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 13px;
    background-image: url("../img/background.jpg");
}


h1 {
    margin: 2px;
    font-size: 40px;
    font-family: "Galindo", sans-serif;
    color: white;
    text-shadow: 3px 3px black, 4px 4px 5px #f1aef5;
}


h2 {
    margin-top: 200px;
    font-size: 30px;
    font-family: "Verdana";
    font-weight: 600;
    color: white;
    text-shadow: 3px 3px black, 4px 4px 5px #f1aef5;
}

p {
    color: white;
    font-size: 16px;
    font-family: "Lucida Console";
}

#difficulty_info {
    min-height: 40px;
}

#content {
	padding: 20px;
	display:flex;
    flex-wrap:wrap;
}

button {
    min-height: 60px;
}
.game_button {
    width: 130px;
    height: 50px;
    font-size: 25px;
    font-family: "Lucida Console";
    color: white;
    padding: 10px;
    margin: 10px;
    background-color: #480982;
}

    .game_button:hover {
        border: 5px solid yellow;
    }

#gamespace {
	margin: 20px;
    height: 800px;
    width:  1200px;
	background-color: #FFF;
	border: 4px solid #CCC; 

}

    #gamespace:hover {
        cursor: url("../img/bat.png"), auto;
    }

div#gamespace img {
    position: absolute;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

div#gamespace {
    position: relative;
}

video {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#controls {
    display: flex;
    margin-bottom: 20px;
}

#gameTimer {
    flex: 1;
    text-align: left;
    font-size: 30px;
    font-family: "Verdana";
    font-weight: 600;
    color: white;
    text-shadow: 3px 3px black, 4px 4px 5px #f1aef5;
}


#score {
    flex: 1;
    text-align: right;
    font-size: 30px;
    font-family: "Verdana";
    color: white;
}


.col1{
    text-align:center;
    width: 550px;
    min-width: 400px;
}


@media only screen and (max-width: 900px){
    #content{
        display: inline-block;
    }
    .col1{
        margin:0 auto;
    }
}