* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.splash-container {
    text-align: center;
    padding: 20px;
}

.typewriter {
    font-size: 3rem;
    font-weight: bold;
    display: inline-block;
}

.cursor {
    display: inline-block;
    animation: blink 0.7s infinite;
    font-weight: normal;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .typewriter {
        font-size: 2rem;
    }
}

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