body {
    width: 100%;
    max-width: 80ch;
    min-height: 100vh;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #080604;
    color: #e6dfd3;
    font-family: "Consolas", "Inconsolata", "Source Code Pro", "Fira Mono", "Menlo", "DejaVu Sans Mono", monospace;
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
    line-height: 1.5;
    letter-spacing: 0.3px;
    box-sizing: border-box;
}

img {
    border: 1px solid #1b3a4a;
    border-radius: 3px;
    max-width: 100%;
    height: auto;
    display: block;
}

a:link {
    color: #e6dfd3;
    border-bottom: 1px solid #4f93b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #e6dfd3;
    border-bottom-color: #9fd3f5;
    text-shadow: 0 0 8px #9fd3f5;
}

.navigation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-shadow: none;
    padding: 0.75rem 0;
    margin: 0 auto;
    gap: clamp(5px, 1.5vw, 15px);
    box-sizing: border-box;
    min-width: 0;
    flex-shrink: 1;
}

.navigation a {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
    border-radius: 2px;
    text-shadow: none;
    flex: 1 1 auto;
    min-width: 0;
    flex-shrink: 1;
    border: 1px solid #5f3a08;
    text-decoration: none;
    color: #ffcc80;
    transition: 0.15s ease;
    font-size: clamp(10px, 3.5vw, 2rem);
    font-weight: bold;
    letter-spacing: 1px;
    white-space: clip;
    overflow: visible;
    text-overflow: clip;
}

.navigation a:hover {
    background-color: #c48a2c;
    color: #080604;
}

.navigation a:focus,
.navigation a:active {
    background-color: #ffcc80;
    color: #080604;
    text-shadow: none;
}

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

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #4f93b8;
    border-top: 1px solid #1b3a4a;
}
