* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100dvh;
    gap: 4rem;
    align-items: center;
    background-color: #1d1d1d;
    color: #fff;
    text-align: center;
}

img {
    width: 16rem;
    height: auto;
}

.loading-text::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}
