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

body {
    background-color: #000000;
    color: #fdff90;
    font-family: 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    font-size: 5px;
    line-height: 1.1;
    white-space: pre;
}

.text {
    font-size: 18px;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        font-size: 5px;
    }
    
    .text {
        font-size: 14px;
    }
}
