: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;
}

#titre h1{
    text-align: center;
    text-decoration: underline;
    margin-top: 20px;
    font-size: 2.5rem;
}

h3 {
    text-align: center;
    padding: 30px;
}

figure img {
    height: auto;
    width: 400px;
}

span {
    font-weight: bold;
    text-decoration: underline;
}

.boutique {
    display: block;
    margin: 0px auto;
}

.boutiqueMHB p {
    font-size: 1.5rem;
    text-align: center;
}

.boutiqueMHB p a {
    text-decoration: none;
    font-size: 1.8rem;
    color: white;
}
/* Fin de la vue portable */

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

    #titre h1{
        font-size: 3.5rem;
        margin: 40px 0;
    }

    h3 {
        text-align: center;
        padding: 30px;
    }
    
    figure img {
        height: auto;
        width: 600px;
    }
    
    .boutique {
        display: block;
        margin: 0px auto;
    }
    
    .boutiqueMHB p {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .boutiqueMHB p a {
        text-decoration: none;
        font-size: 2.8rem;
        color: white;
    }
    
}
/* Fin vue tablette */

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

    #titre h1{
        text-align: center;
        text-decoration: underline;
        font-size: 4.5rem;
        margin: 50px;
    }

    h3 {
        text-align: center;
        padding: 30px;
    }
    
    figure img {
        height: auto;
        width: 800px;
    }
    
    .boutique {
        display: block;
        margin: 0px auto;
    }
    
    .boutiqueMHB p {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .boutiqueMHB p a {
        text-decoration: none;
        font-size: 2.8rem;
        color: white;
    }
    
}
/* fin de la vue ordinateur */