.titlePanel {
    overflow: auto;
    height: 100px;
    position: relative;

    /*背景显示*/
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-size: 50px;
    color: #f2be45;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.wow {
    position: absolute;
    left: 50%;
    margin-top: 45px;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 44px;
    color: #010101;
    line-height: .85;
    text-transform: uppercase;
    background-size: contain;
    /*-webkit-text-fill-color: rgba(54, 54, 54, 0.1);*/
    -webkit-background-clip: text;
    z-index: 10;
}

.wow + .wow {
    -webkit-text-fill-color: red;
    z-index: 20;
    animation: meh 3s ease-out infinite alternate;
}
@keyframes meh {
    from {
        clip-path: polygon(100% 0, 100% 100%, 20% 100%, 61% 91%, 94% 47%);
    }
    50% {
        clip-path: polygon(100% 0, 100% 100%, 20% 100%, 59% 52%, 74% 13%);
    }
    to {
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 85%, 87% 41%);
    }
}