@import url(https://font.xdws.work/mori/css);

body{
    background: #0e100f;
    font-family: Mori, Public Sans, Inter, sans-serif;
    text-align: center;
}

h1{
    color: #fffce1;
    font-size: 50px;
}

p{
    color: #7c7c6f;
    font-size: 25px;
    margin-top: 25px;
}


/* Loading dots */
.dots {
     width: 88px;
     height: 42.2px;
     background: radial-gradient(circle closest-side,#fffce1 90%,#0000) 0%   50%,
     radial-gradient(circle closest-side,#fffce1 90%,#0000) 50%  50%,
     radial-gradient(circle closest-side,#fffce1 90%,#0000) 100% 50%;
     background-size: calc(100%/3) 21.1px;
     background-repeat: no-repeat;
     animation: dots-7ar3yq 1s infinite linear;
    margin: 0 auto;
    margin-top: 120px;
 }

@keyframes dots-7ar3yq {
    20% {
        background-position: 0%   0%, 50%  50%,100%  50%;
    }

    40% {
        background-position: 0% 100%, 50%   0%,100%  50%;
    }

    60% {
        background-position: 0%  50%, 50% 100%,100%   0%;
    }

    80% {
        background-position: 0%  50%, 50%  50%,100% 100%;
    }
}