:root{
    /* les couleurs du site */
    --ecru: #fff8dc;
    --jaune: #e4a600;
    --bleu: #1550c6;
    --bRoi: #4169E1;

    font-size: 12px;
    /* font-family: 'Philosopher', 'Lora', Tahoma, sans-serif; */
    /* font-family: 'Roboto','Philosopher'; */
}

@font-face {
    font-family: 'coolveticaRegular';
    src: url('/fonts/coolvetica rg.otf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */

}

@font-face {
    font-family: 'sansationRegular';
    src: url('/fonts/Sansation_Regular.ttf');
    font-weight: normal; /* Définit le poids (normal, bold, etc.) */
    font-style: normal;  /* Définit le style (normal, italic, etc.) */
    
}

body{
    font-family: 'sansationRegular', sans-serif;
}

h1 {
    text-align: center;
    text-decoration: underline;
    margin: 20px 0;
}

h2 {
    margin-left: 15px;
    padding-bottom: 10px;
}

.maillot img {
    width: 200px;
    height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.table-responsive {
    margin: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
}

.equipe{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
/* Fin de la vue portable */

/* Vue tablette */
@media screen and (min-width:601px){
    :root {
        font-size: 14px;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
        padding: 10px;
    }
    
    .maillot {
        width: 350px;
        height: 350px;    
    }

}

/* Ecran d'au moins 1024px de largeur */
@media screen and (min-width:1024px) {
    :root {
        font-size: 20px;
    }
    
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.8rem;
        padding: 10px;
    }

    .maillot img {
        width: 400px;
        height: 400px;
    }
}
/* fin de la vue ordinateur */