*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #333;
}
.navigation{
    
    width: 350px;
    height: 70px;
}
.navigation ul{
    display: flex;
}
.navigation ul li{
    position: relative;
    list-style: none;
    width: 100px;
    height: 70px;

}
.navigation ul li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}
.navigation ul li a .icon{
    position: relative;
    line-height: 75px;
    transition: 0.5s;
    font-size: 30px;

}
.navigation ul li  .active a .icon{
    font-size: 20px;
    transform: translateY(-6px);
}
.navigation ul li a .text{
    position: absolute;
    
    color: #ff7b7b;
    bottom: -25px;
    font-weight: 400;
    transition: 0.25s;
    text-transform: uppercase;
    transform: scale(0);
}
.navigation ul li:hover a .text{
    transform: scale(1);
    margin-top: 30px;
}