/* Shared styles for all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: black;
    font-family: 'Inclusive Sans', sans-serif;
    color: #e0e0e0;
    filter: url(#dither);
}

/* Shared text styles */
h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    color: #a0a0a0;
    text-align: center;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

/* Navigation links */
nav {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

nav a:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* Content wrapper */
#content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        font-size: 1rem;
    }
}
