.loading-screen {

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px 20px;

    box-sizing: border-box;

}

#loading-text {

    font-size: 2.2rem;

    color: var(--champagne);

    animation: fadeUp 1s ease forwards;

    max-width: 600px;

}