@media (orientation: portrait) {
    body {
        flex-direction: column;
        overflow: hidden;
    }

    .boutonTele{
        display: none;
        position: absolute;
        width: 90%;
        padding-bottom:50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
        background-color: rgb(255, 255, 255);
        border: 5px solid rgb(255, 0, 0);
    }

    .boutonTele p {
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        color: rgb(0, 0, 0);
        font-family: 'Arial', sans-serif;
        font-size: calc(var(--font-size) * 1.3) ;
        font-weight: bold;
        text-align: center;
        overflow: hidden;
      }

      .oui{
        display: flex;
        position: absolute;
        width: 30%;
        padding-bottom:15%;
        left: 30%;
        top: 70%;
        transform: translate(-50%, -50%);
        z-index: 4;
        background-color: rgb(0, 110, 255);
        overflow: hidden;
    } 

    .non{
        display: flex;
        position: absolute;
        width: 30%;
        padding-bottom:15%;
        left: 70%;
        top: 70%;
        transform: translate(-50%, -50%);
        z-index: 4;
        background-color: rgb(0, 110, 255);
        overflow: hidden;
    }

    .oui p{
        text-align: center;
        top: 50%;
        font-size: calc(var(--font-size) * 0.9);
        transform: translate(-50%, -50%);
    }

    .non p{
        text-align: center;
        top: 50%;
        font-size: calc(var(--font-size) * 0.9);
        transform: translate(-50%, -50%);
    }

    .croix{
        position: fixed;
        width: 25%;
        padding-bottom:0%;
        right: 0%;
        bottom: 0%;
        z-index: 20;
          
    }

 /* ////////////////// */


 .parent {
	display: none;
  }

 /* ///////////////////// */

 .containerResponsive {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: scroll;
    z-index: 1;
}

.sectionResponsive {
    flex: 1;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid #ccc; 
    z-index: 1;
}

.sectionResponsive img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}

    
}