* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
}

/*Presentation*/

.PresentationTitre {
    background-color: #e32047;
    border-radius: 5px;
    text-justify: auto;
}

.ImgPresentationHumanstero {
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}


.DivPresentation {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.textePresentation {
    color: whitesmoke;
    text-align: justify;
    font-size: clamp(0.3125rem, -0.5208rem + 6.6667vw, 1.5625rem);
    padding: 15px;
}

.colorTexte {
    color: #ff0000bd;
    font-weight: bolder;
}


/* Logo Agprod*/
.logoAgprod {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: glow 8s infinite;
}

@keyframes glow {

    0%,
    100% {
        border-color: black;
    }

    50% {
        box-shadow: 0 0 15px #7c4dff;
    }
}

/*Réseaux*/
.social-links a {
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    color: whitesmoke
}

.social-links {
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    color: whitesmoke
}


@media screen and (min-width: 800px) {

    .icones {
        font-size: 200%;
    }
}

.bi-envelope {
    color: #e80675;
}

.bi-facebook {
    color: #3b5998;
}

.bi-youtube {
    color: #FF0000;
}

.bi-phone {
    color: #ef7707;
}

/* Les images */

.imgCadre {
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    align-items: center;
    justify-items: center;
    overflow: hidden;
}

.imgCadre2 {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 2fr;
    gap: 8px;
    position: relative;
}

.imgCadre2>img {
    object-fit: cover;
}


.imgHumanStereoPresentation {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 3px solid #ff0000bd;
}


.imgHumanStereoPresentation:hover {
    opacity: 0.5;
}

/*Footer*/

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: whitesmoke
}

.Creditphoto>a {
    text-decoration: none;
    color: rgb(109, 0, 0);
}