@keyframes load {
    0%{
        opacity: 0.08;
/*         font-size: 10px; */
/*                              font-weight: 400; */
                                filter: blur(5px);
                                letter-spacing: 3px;
        }
    100%{
/*         opacity: 1; */
/*         font-size: 12px; */
/*                              font-weight:600; */
/*                              filter: blur(0); */
        }
}

.animate {
        display:flex;
        justify-content: center;
        align-items: center;
        height:100%;
        margin: auto;
/*      width: 350px; */
/*      font-size:26px; */
        font-family: Helvetica, sans-serif, Arial;
        animation: load 1.5s infinite 0s ease-in-out;
        animation-direction: alternate;
        text-shadow: 0 0 1px white;
}
body, html{
        height: 96vh;
        background-color: #111;
        color: white;