body {
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #a2aceb76;
}

/* Base styles */
.toy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.screen {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 2px solid #333;
    margin: 10px;
    padding: 10px;
    width: 100%;
    height: 65%;

}

.game,
.score {
    flex: 1;
    padding: 10px;
    font-size: 2.5vw;
    font-family: monospace;
}

.game {
    width: 80%;
    border-right: 1px solid #666;
}

.score {
    width: 20%;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.depth {
    margin: 5px;
    padding: 10px;
}

/* Responsive styles */
@media screen and (min-width: 768px) {
    .toy {
        flex-direction: row;
    }

    .screen {
        flex-direction: row;
        margin: 0;
        border: none;
    }

    .game {
        width: 80%;
        border-right: 1px solid #666;
        font-size: 10vw;
    }

    .score {
        width: 20%;
        border-left: 1px solid #666;
    }

    .controls {
        flex-direction: column;
        margin-top: 0;
        align-items: center;
    }

    .toolbar {
        flex-direction: row;
        margin-top: 10px;
    }
}

.toy {
    -webkit-tap-highlight-color: hsla(0, 0, 0, 0);
    tap-highlight-color: hsla(0, 0, 0, 0);
    background-color: #363636;
    background-image: linear-gradient(45deg, hsla(0, 0%, 0%, .25) 25%, transparent 25%, transparent 75%, hsla(0, 0%, 0%, .25) 75%, hsla(0, 0%, 0%, .25)),
        linear-gradient(45deg, hsla(0, 0%, 0%, .25) 25%, transparent 25%, transparent 75%, hsla(0, 0%, 0%, .25) 75%, hsla(0, 0%, 0%, .25));
    background-position: 0 0, 2px 2px;
    background-size: 4px 4px;
    height: 100%;
    padding: 1vh;
    margin: 0 auto;
    display: block;
}


.ascimino {
    line-height: 0.7em;
    letter-spacing: 0.1em;
}


.toolbar {
    padding: 2em;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

button.depth {
    background: #444;
    font-size: 2vw;
    border: none;
    border-radius: 80px;
    box-shadow: inset 0 0 2px 2px hsla(0, 0%, 0%, .2),
        inset 0 0 2px 4px hsla(0, 0%, 0%, .2),
        inset 0 0 2px 6px hsla(0, 0%, 0%, .2),
        inset 0 0 1px 8px hsla(0, 0%, 0%, .5),
        inset 0 -4px 2px 4px hsla(0, 0%, 0%, .5),
        inset 0 1px 1px 8px hsla(0, 0%, 100%, .25),
        inset 0 -30px 30px hsla(0, 0%, 0%, .2),
        0 -4px 8px 4px hsla(0, 0%, 0%, .5),
        0 10px 10px hsla(0, 0%, 0%, .25),
        0 0 2px 2px hsla(0, 0%, 0%, .2),
        0 0 2px 4px hsla(0, 0%, 0%, .2),
        0 0 2px 6px hsla(0, 0%, 0%, .2),
        0 0 2px 8px hsla(0, 0%, 0%, .5),
        0 1px 2px 8px hsla(0, 0%, 100%, .25),
        0 -1px 2px 8px hsla(0, 0%, 0%, .5);
    color: #303030;
    cursor: pointer;
    /* font: bold 12px/25px sans-serif; */
    height: 5em;
    width: 5em;
    padding: 0;
    margin: 1em;
    text-shadow: 0 1px 1px hsla(0, 0%, 100%, .25),
        0 -1px 1px hsla(0, 0%, 0%, .75);
}

button.depth:hover,
button.depth:focus {
    color: #0ab;
    text-shadow: 0 0 20px hsla(240, 75%, 75%, .5),
        0 1px 1px hsla(0, 0%, 100%, .25),
        0 -1px 1px hsla(0, 0%, 0%, .75);
}

button.depth:active {
    box-shadow: inset 0 0 2px 2px hsla(0, 0%, 0%, .2),
        inset 0 0 2px 4px hsla(0, 0%, 0%, .2),
        inset 0 0 2px 6px hsla(0, 0%, 0%, .2),
        inset 0 0 1px 7px hsla(0, 0%, 0%, .5),
        inset 0 5px 15px 7px hsla(0, 0%, 0%, .15),
        inset 0 -4px 2px 3px hsla(0, 0%, 0%, .5),
        inset 0 1px 1px 7px hsla(0, 0%, 100%, .25),
        inset 0 -30px 30px hsla(0, 0%, 0%, .1),
        inset 0 30px 30px hsla(0, 0%, 0%, .2),
        0 -4px 8px 4px hsla(0, 0%, 0%, .5),
        0 5px 10px hsla(0, 0%, 0%, .25),
        0 0 2px 2px hsla(0, 0%, 0%, .2),
        0 0 2px 4px hsla(0, 0%, 0%, .2),
        0 0 2px 6px hsla(0, 0%, 0%, .2),
        0 0 2px 8px hsla(0, 0%, 0%, .5),
        0 1px 2px 8px hsla(0, 0%, 100%, .25),
        0 -1px 2px 8px hsla(0, 0%, 0%, .5);
    line-height: 86px;
}