.orbit-container {
    position: relative;
    height: auto;
    width: 100%;
    /* background: url("../data/img/background\ sae201.jpg") center/cover no-repeat; */
    background-size: 150vh;
    display: flex;
    justify-content: center;
}

.middle-grid {
    width: 100rem;
    display: grid;
    justify-content: center;
    align-items: center;
    justify-items: end;
    grid-gap: 0 20px;
    grid-template-areas: 
        "img intro"
        "img desc";
}

.introduction-area {
    width: 40rem;
    grid-area: intro;
    text-align: center;
    margin-bottom: 25px;
}

.introduction-area h1 {
    color: white;
}

ul{
    text-align: start;
}

.description-area {
    width: 40rem;
    grid-area: desc;
}

.img-area {
    grid-area: img;
    display: flex;
    align-items: center;
    width: auto;
    height: 100%;
}

.img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    border: #b5b3e8dd 10px solid;
    box-shadow: 1px 1px 6px 0px #806fdb;
    object-fit: cover;
}

.technical {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 25px 0 25px 0;
}

.schema-area {
    width: 70rem;
    margin-top: 50px;
    margin-bottom: 25px;
    margin-right: 25px;
}

.desc-schema {
    justify-items: center;
    width: 40rem;
    height: 100%;
    margin-right: 25px;
}

.desc-schema .grid-container {
    margin-top: 25px;
}

.desc-schema h3, .description-area h3 {
    height: auto;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    width: auto;
}


/* Disposition téléphone */

@media screen and (max-width: 85.9375em) {
    .middle-grid {
        width: 95%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "intro"
            "desc"
            "img";
        align-content: center;
        justify-items: center;
    }

    .introduction-area, .description-area, .img-area, .desc-schema {
        margin: 0 0 40px 0;
        width: 100%;
    }

    .technical {
                width: 95%;

        flex-direction: column;
        align-items: center;
    }

    .schema-area {
        width: 87%;
    }

  }


  @media screen and (max-width: 39.9375em) {
    .middle-grid {
        align-content: center;
        justify-items: center;
        justify-content: center;
    }
    .introduction{
        justify-content: center;
    }
    .middle {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .img-area {
        padding: 10px;
    }
  }
