body {
    width: clamp(320px, 90vw, 1000px);
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: #080604;
    color: #e6dfd3;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-size: clamp(1rem, 2vw, 2rem);
    font-family: "Consolas", "Inconsolata", "Source Code Pro", "Fira Mono", "Menlo", "DejaVu Sans Mono", monospace;
}

h1 {
    color: #e6dfd3;
}

img {
    border: 1px solid transparent;
    background-image: linear-gradient(#080604, #080604),
        linear-gradient(to bottom, rgba(64, 160, 160, 0.8) 0%, rgba(230, 223, 211, 0.2) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 4px 4px -2px rgba(64, 160, 160, 0.6),
        0 0 6px 1px rgba(64, 160, 160, 0.75),
        0 4px 10px rgba(0, 0, 0, 0.9);

    border-radius: 3px;
}

.navigation {
    background-color: #0d0a07;
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #ff9900;
    width: clamp(320px, 90vw, 1000px);
    margin: 0 auto;
    padding: 1.5rem 1rem;
    justify-content: space-between;
    align-items: center;
}

.navigation a {
    color: #ffb300;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border: 1px solid #cc7a00;
    background-color: #1a1105;
    display: flex;
    gap: clamp(10px, 1.5vw, 24px);
    list-style: none;
    white-space: nowrap;
    transition: background-color 1s ease;
}

.navigation a:hover {
    background: #cc7a00;
    color: #e6dfd3;
    transition: 0.1s;
}

.navigation a:active {
    background: #ff9900;
    color: #0d0a07;
    transition:
        background-color 0.3s ease-out,
        transform 0.2s;
}

.content {
    padding-top: clamp(15px, 2vh, 30px);
    padding-inline: 20px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 5rem;
    padding: 2rem 1rem;
    font-size: 0.75rem; /* Keep it small and unobtrusive */
    letter-spacing: 0.05em; /* Gives tiny text better readability */
    color: rgba(230, 223, 211, 0.4);
    border-top: 1px solid rgba(230, 223, 211, 0.05);
}

/* Optional: If you have links in the footer, make them elegantly interact */
.footer a {
    color: rgba(230, 223, 211, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    /* Smoothly glides up to full text brightness on hover */
    color: #e6dfd3;
}
