#project-section {
    background-color: whitesmoke;
}

#project-presentation-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/8;
    overflow: hidden;


}

#title-project {
    text-align: center;
    font-size: 5vw;
}

#project-presentation-img>img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;


}

#project-presentation-img::after {
    content: " ";
    position: absolute;
    background-color: rgb(36, 35, 35);
    opacity: 0.8;
    z-index: 2;
    inset: 0;

}

.project-title {
    color: white;
    font-size: medium;
    font-weight: bold;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


hr{
    border: 1px solid red; 
    width: 100%;
    margin: 20px 0px;


}

#project-description {
    padding: 15px;
}

#project-data {
    padding: 15px;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

ul {
    text-align: justify;

}

li {
    margin: 10px 0px;
}



#img-components-wrapper {
    max-width: 750px;
    width: 100%;

}



#carrousel {
    position: relative;
    width: 100%;
    margin: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.img-carrousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    animation: fadeCarousel 15s infinite;
}

.img-1 {
    animation-delay: 0s;
}

.img-2 {
    animation-delay: 5s;
}

.img-3 {
    animation-delay: 10s;
}

@keyframes fadeCarousel {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


#carrousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.3) 75%,
            rgba(0, 0, 0, 0.7) 100%);

}

#img-footer-text {
    position: absolute;
    color: white;
    font-size: medium;
    left: 15px;
    bottom: 10px;
    z-index: 4;
    backdrop-filter: blur(4px);
}