body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    /* Светло-серый фон */
}

#loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#loading img {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 192px;
    height: 192px;
}

.loader {
    border: 4px solid #000000;
    border-top: 4px solid #FE3676;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(100% + 80px);
    /* Отступ сверху */
    animation: spin 1s linear infinite;
}

.loading-text {
    position: absolute;
    top: calc(100% + 130px);
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: white;
    white-space: nowrap;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}