@media (max-width: 480px) {
    /*Regole Generiche*/
    html{
        font-size: 14px;
        background-color: rgb(110, 0, 0);
    }
    .press-start-2p-regular {
        font-family: "Press Start 2P", system-ui;
        font-weight: 400;
        font-style: normal;
      }      
    /*Regole Nav*/
    .ParteAlta{
        background-color: rgb(136, 0, 0);
    }
    .TitoloECerca{
        display: flex;
        flex-direction: row;
        background-color: rgb(136, 0, 0);
        justify-content: space-around;
        gap: 10px;
        align-items: center;
        width: 100%;
        padding: 5px 0;
    }
    .TitoloECerca h1{
        font-size: 1.8rem;
        color: white;
    }
    .TitoloECerca img{
        width: 40px;
        height: 40px;
    }
    .pokeball-icon{
        transition: all 0.5s ease-in-out;;
    }
    .pokeball-icon:hover{
        transform: scale(1.2);
    }
    
    .Input {
        display: none;
        width: 100%;
    }
    .Input.responsive {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgb(208, 0, 0);
        padding: 5px 0;
        gap: 10px;
    }
    .Input.responsive input {
        width: 80%;
        padding: 6px;
        border-radius: 8px;
        border: none;
        font-size: 1rem;
        background-color: rgb(255, 228, 228);
        text-align: center;
        color: black;
    }
    .Input.responsive button{
        width: 20%;
        padding: 6px;
        border-radius: 8px;
        border: none;
        font-size: 0.8rem;
        background-color: rgb(149, 0, 0);
        color: white;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.519);
    }

    /*Regole Pokedex*/
    .info{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 12px 0;
        gap: 5px;
        background-color: rgb(238, 238, 238);
    }
    .info h2{
        font-size: 1.8rem;
        color: rgb(0, 0, 0);
        border: 2px solid rgb(50, 50, 50);
        border-radius:8px;
        padding: 5px 10px;
        letter-spacing: 1px;
    }
    .info p{
        font-size: 1.3rem;
        color: rgb(0, 0, 0);
        border: 2px solid rgb(86, 0, 0);
        border-radius:8px;
        padding: 5px 10px;
        letter-spacing: 1px;
        text-align: center;
    }
    /*Parte Sotto*/
    .ParteSotto{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        gap: 10px;
    }
}