#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    padding: 100px;
}

#concours-infos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: -30px;
    padding: 50px;
}

.concours {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.concours-infos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.affiche {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 10px;
    overflow: clip;
}

.affiche img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.affiche img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.affiche div:first-child {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.affiche p {
    color: white;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

@media (max-width: 1000px) {
    #hero {
        padding: 50px;
    }
}
