*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

header{ 
    background-color: #000;
    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;
}

header>img{
    height: 50px;
    width: 50px;
    border-radius: 70%;
}

.carousel{
    z-index: -1;
    margin-top: 200px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 50px;
}

.carousel img{
    filter: grayscale(1);
}

.logo{
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}

.logo span{
    color: #1e90ff;
}

.navbar{
    display: flex;
    position: relative;
}

.navbar li{
    list-style: none;
}

.navbar a{
    color: #fff;
    /*color: #00008B;*/
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}

.bouton-don{
    padding: 10px 20px;
    background: #1e90ff;
    margin-top: -10px;
    text-transform: uppercase;
}

.bouton-don:hover{
    background: #1e90ff;
    transition: ease-in-out;
}

header .navbar li a:hover{
    color: #1e90ff;
    border-bottom: 2px solid #1e90ff;

}

main {
    margin-top: 3100px;
    padding: 2em;
    max-width: 800px;
    margin: auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
    text-align: center;
}

.donations h2 {
    color: #111;
    margin-top: 20%;
}

.marg{
    margin-bottom: 10%;
}

.donations ul {
    list-style-type: none;
    padding: 0;
}

.donations li {
    background: #e2e2e2;
    margin: 1em 0;
    padding: 1em;
    border-radius: 5px;
}

.donations h3 {
    margin-top: 0;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


footer{
    background-color: #111;
}

.footer-contenu{
    margin-top: 40px;
    width: 100%;
    padding: 70px 30px 20px;
}

.media{
    display: flex;
    justify-content: center;
}

.media a{
    text-decoration: none;
    padding: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 50%;
}

.media a i{
    font-size: 2em;
    color: #111;
    opacity: 0.9;
}

.media a:hover{
    background-color: #111;
    transition: 0.5s;
}

.media a:hover i{
    color: #fff;
    transition: 0.5s;
}

.footerNav{
    margin: 30px 0;
}

.footerNav ul{
    display: flex;
    justify-content: center;
}

.footerNav ul li a{
    color: #fff;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}

.footerNav ul li a:hover{
    opacity: 1;
}

.signature{
    background-color: #111;
    padding: 20px;
    text-align: center;
}


.signature p{
    color: #fff;
}

.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}