.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.typing-text {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    border-right: 3px solid #ffffff;
    white-space: nowrap;
    animation: blink-cursor 1s infinite;
}

@keyframes blink-cursor {
    0%, 50% {
        border-color: #ffffff;
    }
    51%, 100% {
        border-color: transparent;
    }
}

.main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.main-content.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .typing-text {
        font-size: 1.5rem;
    }
}