@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;
    background-color: #dbd5d5; 
    font-size: 12px;
}

.form {
    display: grid;
    grid-template-rows: 1fr;
    gap: 10px;
    justify-content: center;
    width: 300px; 
    border: solid 1px #a09b9b;
    background: var(--jaune);
    text-align: center;
    margin: 100px auto;
    border-radius: 15px;
    box-shadow: 3px 3px 5px #a09b9b;
}

.form h1 {
    margin-top: 10px;
}

input {
    margin-bottom: 10px;
}

button {
    margin: 20px;
}

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

/* Fin de la vue portable */
/* Ecran d'au moins 1000px de largeur */
@media screen and (min-width:1000px) {
    :root {
        font-size: 16px;
    }

    .form {
        width: 500px;
        padding: 20px;
    }
}
/* fin de la vue ordinateur */