html {
    transform: scale(0.85);
    transform-origin: top left;
    width: 118%;
}
body {
    width: 100vw;
    background: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
}

body.unix-terminal {
    width: 100vw;
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 2rem;
} 

.main {
    position: relative;
}

.terminal-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    margin: 0 auto;
}

#site-transit {
    position: absolute;
    top: 15%;
    left: 0.1%;
    margin: 0 auto;
}

p2 {
    margin-left: 0.1%;
}

.cmd {
    color: #00ff00; /* Vintage green terminal */
}

.cmd::after {
    content: '_';
    animation: blink 1s step-start infinite;
}



@keyframes blink {
    50% { opacity: 0; }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.typewriter-code {
    overflow: hidden;
    white-space: hidden;
    border-right: 0.15em solid #00ff00;
    animation: typing 6s steps(10, end) 5s infinite, blink 1.5s step-end infinite;
}

@keyframes typing {
    from { max-width: 0 }
    to { max-width: 90% }
}

.typewriter-banner {
    overflow: hidden;
    white-space: hidden;
    border-right: 0.15em solid #00ff00;
    max-width: 0;
    animation: typing 7s steps(30, end) infinite;
}

.ascii-container {
    width: 1300px;
    
    overflow: hidden;
}

.ascii-banner {
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    white-space: pre;
    overflow: hidden;
    line-height: 1.2;
}

.pixel-art:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

