: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;
    background-color: var(--bRoi);
}

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

.filter-picture {
    margin: 20px;
    width: 100%;
}

main section {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    justify-content: center;
    margin: 30px;
}

.description {
    width: 300px; 
    text-align: center;
    border: solid 5px var(--bleu);
    box-shadow: 5px 5px gray;
    border-radius: 20px;
    padding-top: 10px;
    margin-bottom: 20px;
}

.description p a {
    color: white;
}
/* Fin de la vue portable */
/* Ecran d'au moins 1024px de largeur */
@media screen and (min-width:1024px) {
    :root {
        font-size: 16px;
    }

    main { 
        height: auto;
    }

    picture {
        display: flex;
        justify-content: center;
    }

    .description {
        margin: 0 30px;
    }

}
/* fin de la vue ordinateur */