html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
    color: #fff;
}

body {
    background-image: url('dc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(4px); /* Adjust blur intensity */
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for transparency/darkening */
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}
footer {
    position: absolute;
	font-family:'Trebuchet MS',sans-serif;
	bottom: 0.3rem;
	right: 0.7rem;
	width: 90%;
    z-index: 1;
    color: #888;
    text-align: right;
    padding: 1rem;
    font-size: 0.9rem;
}
.text-outline {
  text-shadow:
    -1px 0 black,
     0 1px black,
     1px 0 black,
     0 -1px black,
    -1px -1px black,
     1px -1px black,
    -1px  1px black,
     1px  1px black;
}
a:hover, a:visited, a:link, a:active
{
    color: #888;
    text-decoration: none;
}