body {
    background-image: url('fond.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100vw;
    margin: 0;
    gap: 40px;
    padding: 40px 0;
    min-height: calc(100vh - 80px);
}

a {
    position: relative;
    display: flex;width: 80%;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.7);
}

img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

b {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50%;
    background-color: #a02abe;
    padding: 5px 5px;
    border-radius: 0 0 20px 20px;
    color: white;
    width: calc(100% - 10px);
    text-align: center;
}

@media screen and (max-width: 675px) {
    a {
        height: 200px;
    }
}

.travaux::after {
    content: 'En cour de création';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
    box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.7);
    width: max-content;
}

.travaux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(50, 50, 50, 0.5),
        rgba(50, 50, 50, 0.5) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none; 
}
