/* Reset */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #222;
    color: white;
    text-align: center;
}

/* Background patch image */
body {
    background: #222 url("patch.png") no-repeat center center;
    background-size: contain;
    opacity: 0.9;
}

/* Text overlay */
.overlay {
    z-index: 2;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 20px;
    opacity: 0.8;
}

/* Footer */
footer {
    position: fixed;
    bottom: 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    color: white;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
