@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");

:root {
    --bg: #363fff;
    --bg2: #3138c6;
    --title: #293245;
    --secondary-light: rgb(34, 124, 112, 0.2);
    --secondary-light-2: rgb(127, 183, 126, 0.1);
    --white: #fff;
    --black: #393e46;
    --green: #00FF96;
    --blue: #00A2FF;

    --shadow: 0px 2px 8px 0px var(--secondary-light);
}

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* navbar */
nav{
    background-color: #124559;
}

main {
    display: flex;
    padding: 300px 10% 50px 10%;
    /* background: linear-gradient(180deg, #124559, #16184f); */
    color: black;
    gap: 60px;
    flex-direction: column;
}

/* Titre principal */
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #111;
}

/* Titres des articles */
h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #0056b3;
}

/* Paragraphes */
p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Listes */
ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}
ul li {
    margin-bottom: 0.5rem;
}

/* Liens */
a {
    color: #0056b3;
    text-decoration: underline;
}
a:hover {
    color: #003d80;
}

/* Cartes pour chaque article */
article {
    background-color: #fff;
    padding: 1rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* footer */
.waves{
    background-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }
    h1 {
        font-size: 1.4rem;
    }
    h2 {
        font-size: 1.1rem;
    }
}
 