body {
    margin: 0;
    min-height: 2000px; /* Ensure page is scrollable */
    background-color: #000;
    font-family: 'Shadows Into Light', cursive;
    color: #00f;
}
canvas#Matrix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1; /* Matrix rain is in the background */
}
.content {
    position: relative;
    z-index: 3; /* Bring content, including donut, above the Matrix */
    text-align: center;
    padding: 20px;
}
h1 {
    font-size: 4em;
    margin: 0;
    text-shadow: 0 0 10px #00f;
}
.clock {
    font-size: 1.5em;
    color: #0ff;
}

/* Donut Specific Styles */
.donut-section {
    position: relative;
    z-index: 4;
    margin-top: 20px;
    padding: 0; /* Removed padding to reduce overall section size */
    text-align: center;
}

.donut-section h2 {
    color: #0f0;
    font-size: 2em;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
    margin-bottom: 10px;
}

#donut {
    font-family: 'Courier New', monospace;
    font-size: 10px; /* Made the font smaller to reduce overall donut size */
    line-height: 1;
    letter-spacing: 0.1px; /* Slightly tighter letter spacing */
    color: #0f0;
    white-space: pre;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: 10px; /* Reduced padding below the donut */
}

.filler-content {
    position: relative;
    z-index: 2;
    margin: 20px;
    color: #0ff;
    font-size: 1.2em;
}