/* Background settings */
body {
    margin: 0;
    height: 100vh;
    background-image: url('bk2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Loading Bar Styles */
#loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background-color: #ddd;
    border-radius: 20px; /* Round edges for the container */
    padding: 5px; /* Space around the bar inside the container */
    border: 2px solid #FF00FF; /* Border around the loading container */
}

#loading-bar {
    width: 0%;
    height: 20px; /* Thicker loading bar */
    background-color: #FF00FF; /* Neon color for 80s vibe */
    border-radius: 15px; /* Round edges for the bar itself */
}

/* Main content styling */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    font-family: 'Monoton', 'Press Start 2P', sans-serif;
    color: #FF00FF;
    text-shadow: 2px 2px 5px #000000;
    font-weight: bold;
    padding: 10px; /* Adds spacing around the text */
    flex-wrap: wrap; /* Ensures text wraps when needed */
    word-wrap: break-word; /* Forces word break if necessary */
    white-space: normal; /* Allows wrapping */
}

/* Default font size for larger screens */
#typed-text {
    font-size: 4em; /* Large font for desktops */
}

/* Responsive font size for tablets */
@media (max-width: 768px) {
    #typed-text {
        font-size: 2.5em; /* Smaller font for medium screens (tablets) */
    }
}

/* Responsive font size for mobile phones */
@media (max-width: 480px) {
    #typed-text {
        font-size: 1.8em; /* Small font for mobile phones */
    }
}

/* Typing Effect */
#typed-text {
    border-right: 2px solid #FF00FF; /* Blinking cursor */
    white-space: nowrap;
    overflow: hidden;
}

/* Cursor blink effect */
@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #FF00FF; }
    100% { border-color: transparent; }
}

#typed-text {
    animation: blink 1s step-end infinite;
}

/* Basic reset */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

