body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #000;
    text-align: center;
    max-height: 100vh;
    overflow: hidden;
}

.carousel-container {
    max-width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

#carousel img {
    max-width: 70vw;
    width: 100%;
    object-fit: cover;
    position: relative;
    margin: 0 auto;
}

#carousel img::after {
    content: '';
    background-image: url('watermark.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
}

#voirPlus {
    display: block;
    object-position: center;
    width: 30%;
    padding: 15px;
    background-color: rgb(183, 55, 55);
    box-shadow: 10px 5px 5px rgb(61, 61, 61);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
}
