#transition-layer {
    position: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 100%;
    height: 0px;

    z-index: 300;
    background-color: var(--white);

    transition: height var(--customEase) 0.8s;

}

#transition-layer #text-1 {
    height: 0px;
    overflow: hidden;

    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    transition: all ease 0.6s;
    line-height: 100%;

    text-align: center;
}

#transition-layer #text-2 {
    margin-top: -4px;

    height: 0px;
    overflow: hidden;

    color: var(--gray);
    transition: all ease 0.3s;
    line-height: 100%;

    text-align: center;
}