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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a0b;
    cursor: crosshair;
}

#field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#whisper {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3em;
    text-transform: lowercase;
    pointer-events: none;
    transition: opacity 2s ease;
}

::selection {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

#home {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 100;
    cursor: pointer;
}

#home:hover {
    color: rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}
