body {
    font-family: sans-serif;
    margin: 0;
    padding-top: 96px;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    position: relative;
    text-align: center;
}

h1[_loaded]::before {
    opacity: 0;
    transform: scale(0);
}

h1::before {
    animation: loading 0.8s linear infinite;
    border-bottom-color: #FF22B1;
    border-left-color: #FF22B1;
    border-radius: 50%;
    border-right-color: transparent;
    border-style: solid;
    border-top-color: #FF22B1;
    border-width: 2px;
    content: "";
    display: block;
    height: 24px;
    margin: 0 auto 28px;
    width: 24px;
}

h1 span {
    opacity: 0;
    position: absolute;
    transform: scale(0);
}

div {
    text-align: center;
}

div::before {
    border-bottom: 4px solid #FF22B1;
    border-left: 4px solid #FF22B1;
    content: "";
    display: block;
    height: 12px;
    margin: 0 auto 32px;
    transform: rotate(-45deg);
    width: 24px;
}

a {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}