/* Style pour centrer horizontalement et verticalement le contenu */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #201c2b; /* Couleur de fond de secours */
    background: linear-gradient(180deg, #201c2b 0.00%, #4e2674 48.12%, #221d2f 100.00%);
}

/* Style pour les images */
.image-container-home {
    position: relative;
    margin: 10px;
}

.hover-image {
    width: 200px; /* Ajustez la largeur selon vos besoins */
    height: auto;
    transition: transform 0.3s ease; /* Transition pour l'effet de survol */
}
