* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #fff;
    overflow: hidden;
}

#loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #333;
    animation: fadeIn 1.5s ease-in-out;
}

#loading-text {
    letter-spacing: 5px;
    animation: textFadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes textFadeIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
