body {
    font-family: Arial, sans-serif;
    text-align: center;
}
.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.bouton {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
.bouton:hover {
    background-color: #4dce3e;
}

.bouton .rouge {
    background-color: #ff0000;
}