@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600&family=Space+Mono:ital@0;1&display=swap');

body {
    margin: 0;
    padding: 0;
    background: url('/assets/BetterClouds.gif') center center / 100% 100% fixed;
    font-family: 'Space Mono', monospace;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 5em;
    margin-top: 40px;
    text-shadow: 
        2px 2px 0 rgba(0,0,0,0.5),
        4px 4px 0 rgba(0,0,0,0.3);
    letter-spacing: 4px;
    color: #ffffff;
    font-weight: 600;
}

.subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 1.4em;
    margin-bottom: 60px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

nav {
    margin-top: 100px;
    width: 100%;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
}

nav ul li {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.8em;
    font-weight: 600;
    text-shadow: 
        2px 2px 0 rgba(0,0,0,0.8),
        3px 3px 4px rgba(0,0,0,0.4);
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    position: relative;
}

nav ul li a:hover {
    text-shadow: 
        0 0 10px rgba(255,255,255,0.5),
        2px 2px 0 rgba(0,0,0,0.8);
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

footer {
    margin-top: auto;
    padding: 40px 20px;
    width: 100%;
    text-align: center;
}

blockquote {
    font-family: 'Space Mono', monospace;
    font-style: italic;
    font-size: 1.2em;
    margin: 0;
    color: #E6E6FA;  /* Light lavender color */
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(230,230,250,0.3);  /* Glowing effect */
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

blockquote span {
    display: block;
    margin-top: 0.5em;
    font-size: 0.8em;
    font-style: normal;
    color: #FFF0F5;  /* Lavender blush */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul {
        grid-template-columns: 1fr;
        gap: 1.5em;
        padding: 0 20px;
    }
    
    nav ul li {
        font-size: 1.5em;
    }
}
