/* IMPORT GOOGLE FONT SPICY RICE */
@import url('https://fonts.googleapis.com/css2?family=Spicy+Rice&display=swap');
/* STYLE BODY */
body{
    background: #d9d9d9;
    margin: 0;
    padding: 0;
}
/* STYLE UL */
ul{
    padding: 50px;
    margin: 0;
    border: 10px solid #353535;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
/* STYLE LI AND TEXTS STYLE */
ul li{
    list-style: none;
    color: #353535;
    float: left;
    font-size: 5em;
    font-family: "Spicy Rice", serif;
    font-weight: 400;
    font-style: normal;
    transition: .9s;
}
/* EFFECT ROTATING TEXTS */
ul:hover li{
    transform: rotateY(360deg);
}
ul:hover li:nth-child(5){
    transition-delay: .9s;
}
ul:hover li:nth-child(6){
    transition-delay: .7s;
}
ul:hover li:nth-child(7){
    transition-delay: .5s;
}
ul:hover li:nth-child(8){
    transition-delay: .3s;
}