@media (max-width: 480px) {
    /*Regole Generiche*/
    html{
        font-size: 14px;
        background-color: rgb(40, 40, 40);
    }
    .patrick-hand-regular {
        font-family: "Patrick Hand", cursive;
        font-weight: 400;
        font-style: normal;
    }
    .bebas-neue-regular {
        font-family: "Bebas Neue", sans-serif;
        font-weight: 400;
        font-style: normal;
    }            
    /*Sezione Alta*/
    .Benvenuto{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        align-items: center;
        padding: 5px 0;
        background-color: rgb(35, 35, 35);
    }
    .Benvenuto img{
        width: 50px;
        height: 50px;
    }
    .Benvenuto h1{
        font-size: 2.2rem;
        color: white;
        letter-spacing: 2px;
        font-weight: 600;
    }
    .Inserimento {
        display: none;
    }
    .Inserimento.responsive{
        display: block;
        padding: 10px 5px;
        background-color: rgb(33, 33, 33);
    }
    .Inserimento.responsive form{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
    }
    .Inserimento.responsive input {
        width: 80%;
        padding: 8px;
        border-radius: 6px;
        border: none;
        font-size: 1.2rem;
        background-color: rgb(255, 255, 255);
        text-align: center;
    }
    .Inserimento.responsive button {
        padding: 10px 12px;
        border-radius: 8px;
        border: none;
        font-size: 1rem;
        background-color: rgb(70, 70, 70);
        cursor: pointer;
        color: white;
        font-weight: 600;
    }
    /*Sezione Visualizza*/
    .Visualizzazione{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        align-items: center;
        padding: 5px 0;
        background-color: rgb(60, 60, 60);
    }
    .Visualizzazione p{
        font-size: 1.1rem;
        color: white;
        font-weight: 600;
    }
    .Visualizzazione button{
        padding: 8px 6px;
        border-radius: 8px;
        border: none;
        font-size: 0.9rem;
        background-color: rgb(13, 7, 7);
        cursor: pointer;
        color: white;
        font-weight: 600;
    }
}