@font-face {
    font-family: Pixel;
    src: url('../font/PixelifySans-VariableFont_wght.ttf') format('truetype');
}

body {
    overflow: hidden;
}

button{
    position:relative;
    /*width: 200px;
    height: 75px;*/
    border-radius: 75px;
    font-size: 50px;
    border: outset 5px whitesmoke;
    background-color: lightgrey;
    font-family: Pixel;
}

button:hover{
    border-color: rgb(199, 214, 219);
    background-color: skyblue;
}

button:focus{
    border-style: inset;
    font-size: 45px;
}

#copertura {
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 50%;
    z-index: 2;
    position: absolute;
    top: 0px;
    left: 0px;
}

input:focus {
    outline: 2px rgb(0, 69, 172) dotted;
}