main {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;
}
.menu-icon {
    width: 100px;
    height: 100px;
    background-color: brown;  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.icon {
    width: 50px;
    height: 7px;
    margin: 5px 0;
    border-radius: 15px;
    box-shadow: 5px 2px 12px -2px rgba(0,0,0,0.75);
    -webkit-box-shadow: 5px 2px 12px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 2px 12px -2px rgba(0,0,0,0.75);
}
.menu-icon.active{
    background-color: chocolate;
}
.menu-icon.active .icon{
    margin: 0px;
    transition: margin 4s;
    
}
.menu-icon.active .menu-icon__one{
    transform: translateY(3px);
    rotate: 30deg;
    transition: rotate 1s linear 2s;
    

}
.menu-icon.active .menu-icon__two{
    height: 0px;
    width: 0px;
    opacity: 0;
    transition: width 2s, height 2s, margin 2s, opacity 2s;
}

.menu-icon.active .menu-icon__three{

    transform: translateY(-4px);
    rotate: -30deg;
    transition: rotate 1s linear 2s;



}

.menu-icon__one {
    background-color: white;
    
}
.menu-icon__two{
    background-color: white;
    
    
}
.menu-icon__three {
    background-color: white;
    
    
}