@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --broken-white-readable:#f8f9fa;
    --pink: #FFE4E4;
    --lilas: #f0bfff;
    --rose-poudre: #f7d5d5;
    --color_background: #c3eeff;
    --pink-flash: #F9009E;
    --purple: #ae8bff;
    --mid-dark-purple:rgb(175, 67, 175);
    --deep-purple:#3a0ca3;
    --purple-bottom: #d0bcff;
    --soft-blue-violet:#5e60ce;
    --blue-elements: #8dbeffcc;
    --blue-header: #8dbeff;
    --blue-title:rgb(57, 57, 167);
    --blue:rgb(65, 65, 155);
    --neutral-dark-blue:#2e2e48;
}

.navbar {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: fixed; /* Fixe la navbar en haut */
    top: 0;
    z-index: 1000; /* S'assure qu'elle est au-dessus du contenu */
    padding: 5px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
}

.navbar ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

.navbar a {
    color: var(--blue);
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu li {
    list-style: none;
}

.menu a {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
}

.menu a:hover {
    text-shadow: 0 4px 10px var(--soft-blue-violet);
    color: var(--broken-white-readable);
}



