.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
}

.loading-text {
    font-family: 'Tina Text Font', Helvetica, Arial;
    font-size: 24px;
    color: #fff;
    letter-spacing: 20%;
}

.dot {
    display: inline-block;
    animation: blink 2.0s infinite;
    -webkit-animation: blink 2.0s infinite;
}
.dot:nth-child(2) {
    animation-delay: 0.4s;
}
.dot:nth-child(3) {
    animation-delay: 0.8s;
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}