/* Intégration de la police */
@font-face {
    font-family: 'CatalogueDemi';
    src: url('fonts/Catalogue-Demi.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CatalogueDemi', Arial, sans-serif; /* Utilisation de la nouvelle police */
    background-color: #A0DDED; /* Fond bleu clair */
    color: #000000; /* Texte noir */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

/* Conteneur principal */
.container {
    max-width: 1000px; /* Augmenter la largeur du carré */
    padding: 20px 90px 20px 20px;
    background-color: #8D9A8F; /* Fond vert-gris */
   /* border-radius: 10px;*/
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    /* Inclinaison personnalisée et largeur augmentée */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* Contenu principal */
.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #000000; /* Texte noir dans le carré */
}

/* Logo */
.logo {
    width: 250px; /* Ajustez la taille si nécessaire */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Pied de page */
.footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    color: #000000; /* Texte noir pour le pied de page */
}
