* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

html, body {
    height: 100%;
    background-color: black;
    overflow: hidden;
}

/* Canvas full-screen behind everything */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Center both the image and header */
.overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Title glow animation */
h1 {
    color: #b0a8ba;
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: pulseColor 5s ease-in-out infinite;
}

@keyframes pulseColor {
    0%   { color: #b0a8ba; text-shadow: 0 0 5px #b0a8ba; }
    25%  { color: #ff66ff; text-shadow: 0 0 10px #ff66ff; }
    50%  { color: #00ffcc; text-shadow: 0 0 8px #00ffcc; }
    75%  { color: #66ccff; text-shadow: 0 0 10px #66ccff; }
    100% { color: #b0a8ba; text-shadow: 0 0 5px #b0a8ba; }
}

/* The centered image itself */
.centered-image {
    display: block;
    max-width: 60vw;
    max-height: 60vh;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 102, 255, 0.6);
}
