*{
    margin: 0;
    padding: 0;
}

h1{
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    animation: textRotate 4s linear  infinite  ;
}

body{
    background-color: blueviolet;
}

@keyframes textRotate {
    to{
        transform: rotateY(0deg);
    }
    from{
        transform: rotateY(360deg);
    }
}