/* styles.css */
html {
    font-size: 14px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #e388cf;
}

header {
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 1rem;
}

nav a, nav span {
    font-family: monospace;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
    font-size: min(0.9rem, 2.5vw); /* Responsive font scaling */
    flex-shrink: 1;
    min-width: min-content;
}

nav span {
    text-align: center;
    flex: 1;
}

.banner {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 1rem auto;
}

footer nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0;
    font-size: max(10px, 0.9rem);
}

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

/* Emergency shrink for very small screens */
@media (max-width: 320px) {
    nav a, nav span {
        font-size: 2.2vw;
    }
}