*{
    margin: 0;
    padding: 0;
    
}


html, body, main{
    width: 100%;
    height: 100%;
    align-content: center;
    

   
}


.transition{
    position:fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 2;
    pointer-events: none;
}

.transition-row{
    flex:1;
    display: flex;

}

.transition-row.row-1 .block{
    transform-origin: top;
}

.transition-row.row-2 .block{
    transform-origin: bottom;
}

.block{
    flex:1;
    background-color: blueviolet;
    transform: scaleY(1);
    transform: scaleX(1.2);

    will-change: transform;
    
}

a{
    font-size: xx-large;
    font-weight: bolder;
    
    
}

p{text-align: center;}


