/* .transition-1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background-color: var(--darkJungleGreenTransparent);
    transform: scale(1, 0);
    transition: 0.5s ease-out;
}

.transition-1.is-active {
    transform: scale(1, 1);
} */