*{
    transition: all 100ms ease-in-out;
}

body, html{
    margin: 0px;
    padding: 0px;
    background-color: aqua;
    height: 100%;
}

#numero{
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

#box-tasti{
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button{
    cursor: pointer;
    padding: 30px;
    margin: 5px;
    font-size: xx-large;
    border-radius: 7px;
    background-color: yellow;
    box-shadow: 0px 0px 15px 1px black;
}

button:active{
    box-shadow: none;
    padding: 28px;
}

header{
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: grey;
    box-shadow: 1px 1px 10px 1px black;
    padding: 0px 20px;
}

#box-titolo h1{
    margin: 0;
    text-align: center;
}

#box-logo img{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box-i, #istruzioni{
    cursor: pointer;
}

/* schermi piccoli */
@media screen and (max-width: 620px){
    #box-titolo h1{
        font-size: 25px;
        padding: 0px 10px;
    }
}