html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    color: #333;
}

.content {
    flex: 1; /* prend tout l’espace restant */
}

header {
    top: 0; /* coller en haut de la page */
    z-index: 100;
    text-align: left;
    padding: 20px;
    color: #0057AD;
    border-radius: 20px; 
  
}



.filters {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.filters button {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background: #0057AD;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.filters button:hover {
    background: #0077D1;
    color: white;
    
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.item {
    width: 250px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.item:hover {
    transform: rotate(50deg) scale(1.05);
}

.item img {
    width: 100%;
    height: 100%;
    
}

.logo-container svg {
    width: 200px;
    height: auto;
     display: flex;
    justify-content: flex-start;
}

