h1 {
    margin-top: 200px;
    text-align: center;
}
.controls {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
}

.game-container {
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: white;
    border: 5px solid black;
    width: 500px;
    height:500px;
    margin-left:auto;
    margin-right:auto;
}

#character {
    position: absolute;
    background-color: black;
    left:250px;
    bottom:5px;
    width: 20px;
    height: 20px;
}

.enemy {
    position: absolute;
    background-color: red;
    width: 10px;
    height: 10px;
}

#score {
    text-align: center;
    font-size: 30px;
}

#gameoverScreen {
    position: absolute;
    text-align: center;
    font-size: 80px;
    bottom:250px;
}