/* Retro terminal styles */
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400&display=swap');

body {
    background-color: black;
    color: #33ff33;
    font-family: 'Source Code Pro', monospace;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-direction: column;
}

/* Logo styling */
#logo {
    width: 250px; /* Adjust as needed */
    max-width: 80%;
    margin-bottom: 20px;
}

/* Text container */
.terminal {
    font-size: 12pt;
    white-space: nowrap;
}

/* Blinking cursor */
.cursor {
    display: inline-block;
    animation: blink 0.8s steps(2, start) infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Mobile & Tablet Responsive Styling */
@media (max-width: 768px) {
    .desktop-line {
        display: none;
    }
    .mobile-line {
        display: block;
    }
}

/* Default: Hide mobile text on desktop */
@media (min-width: 769px) {
    .mobile-line {
        display: none;
    }
}