body {
    background-color: #050505; /* Near black */
    color: #8b0000; /* Dark red */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically centers the content */
    overflow: hidden; /* Prevents scrollbars */
}

.main-container {
    text-align: center;
}

.center-character {
    max-width: 100%;
    height: auto;
    /* Optional: Add a flickering effect */
    animation: flicker 2s infinite;
}

.scary-text {
    font-size: 3em;
    text-shadow: 2px 2px 5px red;
}

/* Optional: Flickering animation */
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
