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

main {
    padding: 0 10px;
    height: calc(100vh - 260px);
}

h1{
    text-align: center;
    margin: 15px 0;

}

.form-label{
    font-size: 1.2rem;
}

.boutons {
    display: flex;
    justify-content: space-around;
}

.col-4{
    text-align: center;
    margin-top: 10px;
}

.btn-info{
    margin-bottom: 10px;
}

.containerLicence{
    display: grid;
    place-items: center;
}

.creneau{
    margin-top: 25px;
}

.imageCreneau{
    width: 100%;
    height: auto;
}

.licence{
    margin-top: 25px;
}

.btn-danger{
    color: black;
}

/* Fin de la vue portable */

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


}
/* Fin vue tablette */

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

    .imageCreneau{
        width: 1000px;
        height: auto;
    }
}
/* fin de la vue ordinateur */