 
        .center{
            width: 100%;
            height: 8vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding:0;
            margin: 0;
        }

        pop{
            width: 100%;
            font-size: 30px;
            display: block;
            text-align: center;
        }

        .char{
            font-size: 18px;
            height: 20px;
            animation: an 1s ease-out 1 both;
            display: inline-block;
            #font-weight: bold;
            font-family: Arial, Helvetica, sans-serif;
            color: #0066aa;
            font-style: italic;
        }

        @keyframes an{
            from{
                opacity: 0;
                transform: perspective(500px) translate3d(-35px, -40px, -350px) rotate3d(1, -1, 0, 35deg);
            }
            to{
                opacity: 1;
                transform: perspective(500px) translate3d(0, 0, 0);
            }
        }
