body {
    background-color: #6fdb67;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

.date {
    text-align: center;
    width: 100%;
    margin: 50px 0 20px 0;
}

.date img {
    max-width: 350px;
    height: auto;
}

.artistes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.artiste_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
}

.artiste_container img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.artiste_container img:hover {
    transform: scale(1.05);
}

.artiste_container h3 {
    margin-top: 15px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    text-align: center;
    color: #000;
}

.affiche{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.affiche img {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    padding: 20px;
    background-color: #074A08;
}