﻿

/* =========================
   VERSION MOBILE / GSM
   ========================= */

@media screen and (max-width: 768px){

body{
    margin:5px;
    padding:5px;
    text-align:center;
    font-size:16px;
}

/* tableau loto */

.grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr); /* 4 numéros par ligne */
    gap:6px;
    width:100%;
}

/* cases numéros */

.case{
    padding:14px;
    font-size:18px;
    border-radius:6px;
}

/* formulaire */

input{
    width:95%;
    margin:6px 0;
    font-size:16px;
    padding:10px;
}

/* bouton */

button{
    width:95%;
    padding:12px;
    font-size:18px;
}

/* tableau infos */

table{
    width:100%;
    font-size:14px;
}

td{
    padding:6px;
}

/* images */

img{
    max-width:100%;
    height:auto;
}

/* texte */

h1,h2,h3,p{
    text-align:center;
}

}