body {
    /* Set the base background color and apply the layered, randomized pattern */
    background-color: #333; /* Fallback color */

    /* Create the elongated static effect using a repeating linear gradient */
    background-image: repeating-linear-gradient(175deg,
	rgba(138, 43, 226, 0.5), rgba(138, 43, 226, 0.5) 1px,
	rgba(255, 165, 0, 0.5) 1px, rgba(255, 165, 0, 0.5) 2px,
	rgba(165, 42, 42, 0.5) 2px, rgba(165, 42, 42, 0.5) 3px,
	rgba(128, 0, 32, 0.5) 3px, rgba(128, 0, 32, 0.5) 4px,
	transparent 4px, transparent 15px
    );

    background-size: 55px 15px; /* Control the height of the repeating pattern */
    background-attachment: fixed; /* Keep the background from scrolling */

    margin: 0;
    padding: 2rem;
    font-family: 'monospace';
    color: #f0d0d0;
}

h1 {
    padding-left: 100px;
    font-family: 'Times New Roman', Times, serif;
}
