body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

nav {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

#funky-text {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 30px rgba(255, 255, 255, 0.6),
                    0 0 40px rgba(255, 255, 255, 0.4);
    }
}

.funky-letter {
    display: inline-block;
    animation: funky 2s ease-in-out infinite;
}

@keyframes funky {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}