.transition-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0px;
}

.block {
    background-color: white;
    visibility: hidden;
}

/* Les blocs du haut partent du haut */
.block:nth-child(-n+5) {
    transform-origin: top;
}

/* Les blocs du bas partent du bas */
.block:nth-child(n+6) {
    transform-origin: bottom;
}

/* Ajustement pour que les blocs couvrent tout l'écran */
.block:nth-child(n) {
    height: calc(50vh + 2px);
    margin-top: -1px;
}

/* Pour s'assurer que les blocs du bas couvrent bien le bas de l'écran */
.block:nth-child(n+6) {
    margin-bottom: -1px;
}