body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-size: bold;
    font-family: arial;
    
    height: 100vh;
    width: 100vw;
    margin: 0px;
    padding: 0px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.commands {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: bold;
    font-family: arial;
    background-color: black;
    color: rgb(255, 255, 255);
    
    height: 100vh;
    width: 100vw;
    margin: 0px;
    padding: 0px;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.commandsAnimation {
    animation-name: comandi;
    animation-duration: 500ms;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes comandi {
    from {
        background-color: black;
        color: rgb(255, 255, 255);
    }
    to {
        background-color: rgba(0, 0, 0, 0);
        color: rgba(255, 255, 255, 0);
    }
}

cols {
    color: #00ff00;
}

sel {
    color: red;
    font-size: bold;
    font-size: 200%;
    background-color: rgb(88, 88, 88);
    padding: 2px;
    border-radius: 5px;
}

.selAnimation {
    animation-name: text;
    animation-duration: 500ms;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes text {
    from {
        background-color: rgb(88, 88, 88);
        color: red;
    }
    to {
        background-color: rgba(0, 0, 0, 0);
        color: rgba(255, 255, 255, 0);
    }
}

h1 {
    color: white;
}

.score {
    color: white;
}

.gamePath {
    background-color: white;
    height: 70vh;
    width: 70vw;
    margin-bottom: 30px;
}

img {
    height: 50px;
    width: 25px;
    position: fixed;
    padding: 0px;
}

.ostacolo {
    height: 50px;
    width: 50px;
    position: fixed;
    padding: 0px;
    background-color: red;
}

.end {
    background-color: rgb(9, 255, 0);
    width: 25px;
    position: fixed;
    padding: 0px;
}

.start {
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 15px;
    background-color: #00ff0062;
    color: white;
}

.start:active {
    background-color: #00ff00;
}

.plus{
    color: white;
    font-size: 150%;
    background-color: #00ff00;
    border: none;
    margin-right: 5px;
    height: 30px;
    width: 30px;
    border-radius: 5px;
}
.minus{
    color: white;
    font-size: 150%;
    background-color: #ff0000;
    border: none;
    margin-right: 5px;
    height: 30px;
    width: 30px;
    border-radius: 5px;
}