*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1{
    text-align: center;

}


body{
    font-family: "Andale Mono";
    background-color: lightsteelblue;
}


.blocks{
    position: fixed;
    bottom: 0;
    z-index: 1;
    list-style: none;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}


.blocks-block{
    will-change: transform;
    position: relative;
    height: 20vh;
    flex: 1;
    transition: all 0.3s cubic-bezier(0.73,1,0.32,1);
}


.blocks-block:nth-child(1){
    background: lightgray;
    transform-origin: 0% 100%;
}


.blocks-block:nth-child(2){
    background: lightslategray;
    transform-origin: 25% 100%;
}


.blocks-block:nth-child(3){
    background: lightgray;
    transform-origin: 50% 100%;
}


.blocks-block:nth-child(4){
    background: lightslategray;
    transform-origin: 75% 100%;
}


.blocks-block:nth-child(5){
    background: lightgray;
    transform-origin: 100% 100%;
}


.block-names{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 18px;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.29s ease-out;


}


.block-names .blocks-name{
    flex: 1;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}