/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: "Courier New", Courier, monospace;
    background: #0f172a; /* dark navy */
    color: #e2e8f0; /* soft light text */
    line-height: 1.6;
    text-align: center;
    padding: 20px;
}

/* Title */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #38bdf8; /* cyan accent */
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

/* Links */
a {
    color: #facc15; /* yellow accent */
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #38bdf8;
    text-shadow: 0 0 5px #38bdf8;
}

/* Centered sections spacing */
div, center, p {
    margin: 20px auto;
}

/* Iframe styling (banner) */
iframe {
    border: 2px solid #38bdf8;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

/* Images */
img {
    max-width: 100%;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.5);
}

/* Small text */
font[size="2"] {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Add a subtle container feel */
body > * {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
