* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}

body {
    margin-top: 200px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

p {
    font-weight: 300;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.sysy{

    text-align: left;

}

span{

color: #dc8fd3;
}

h2 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span {
    color: #dc8fd3;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.5s;
    background-color: black; /* Ajout de la couleur de fond */
}

.logo{
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}
.logo span{
    color: #dc8fd3;
}

.navbar{
    display: flex;
    position: relative;
}
.navbar li{
    list-style: none;
}
.navbar a{
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}


 header .navbar li a:hover{
        color: #dc8fd3;
        border-bottom: 2px solid #b377ac;
    }

details {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 100px;
    max-width: 500px;
    margin-top: 50px;
    text-align: center;
    justify-content: center;
    position: relative;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    border-radius: 5%;
}

h1 {
    justify-content: center;
    text-align: center;
    color: #000000;
    margin-top: 100px;
}

.amies a {
    padding: 0;
    text-align: left;
    font-weight: 100;
    border-bottom: 1px solid #000;
    padding: 0 10px;
}

summary {
    position: relative;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10%;
    color: #dc8fd3;
}

summary::marker {
    content: none;
}

summary::before,
summary::after {
    content: "";
    width: 2rem;
    height: 0;
    border-bottom: 1px solid;
    position: absolute;
    top: calc(50%);
    right: 10px;
}

summary::after {
    transform: rotate(90deg);
}

details[open] summary::after {
    transform: rotate(0deg);
}

details[open] > summary {
    color: rgb(254, 143, 234);
}

p {
    margin-top: 30px;
}

.white {
    margin-bottom: 150px;
}



@media (max-width: 576px) {
    body {
        margin-top: 150px;
    }

    .navbar a {
        margin-left: 0;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 1.5em;
        margin-top: 50px;
    }

    h2 {
        font-size: 1.2em;
    }

    details {
        margin-bottom: 50px;
        max-width: 100%;
    }

    .container {
        width: 90%;
    }
}
