: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 {
    height: calc(100vh - 260px);
}

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

.col-6 {
    width: 300px;
    border: solid 2px ;
    margin: 40px auto;
    box-shadow: 2px 2px 2px black;
    border-radius: 15px;
    padding: 30px;
}

/* .honeypot-field {
    display: none;
} */
.honeypot-field {
    display: none !important; /* Utilisation de !important pour forcer le style */
}

#contact_send {
    text-align: center;
    width: 200px;
    margin: 20px;
}

/* Fin de la vue portable */
/* Vue tabeltte */
@media screen and (min-width:601px){
    :root{
        font-size: 16px;
    }

    h1 {
        font-size: 3.5rem;
    }
    
    .col-6 {
        width: 500px;
        margin-top: 100px;
    }
    .bouton {
        text-align: center;
    }

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

    main {
        height: auto;
    }

    .col-6 {
        width: 800px;
        padding: 30px;
    }
    
    #contact_send{
        text-align: center;
        width: 400px;
    }
}
/* fin de la vue ordinateur */
