body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #bf0000; 
    color: black;
    text-align: center;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    font-size: 18px;
}


.nav a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
}

.nav a:hover{
        text-decoration: bold;
        border: 2px solid black;
        border-radius: 8px;
        color : white;
}

h1 {
    font-family: "Brush Script MT", cursive;
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
}


img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 20px;
}


h4 p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.6;
}

footer {
    background-color: #bf0000; 
    overflow: hidden;
    position: relative;
    height: 60px;
}

.bandeau {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.logos {
    display: flex;
    gap: 60px;
    animation: defilement 20s linear infinite;
}

.logos img {
    height: 40px;
    object-fit: contain;
}

@keyframes defilement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}