@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Fira Code', monospace;
    overflow: hidden;
}

#ascii-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    white-space: pre;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    opacity: 0.6;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

h1 {
    font-size: 8rem;
    line-height: 0.9;
    margin: 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    mix-blend-mode: exclusion;
    color: #fff;
}

p {
    margin-top: 20px;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}
