/* * Skibidi Down * A style sheet for a whimsical and playful aesthetic. * * The design is meant to evoke a sense of mystery and charm, * with bright colors and quirky elements. */ @import url('/css2?family=Knewy&family=Raleway:wght@300;400&display=swap'); :root { --primary-color: #ff69b4; --accent-color: #ffe082; --background-color: #f5f5f5; --text-color: #1a1a1a; } body { margin: 0; font-family: 'Raleway', sans-serif; background-color: var(--background-color); color: var(--text-color); } header { background-color: var(--primary-color); padding: 20px; color: white; text-align: center; } .header-title { font-size: 2.5rem; margin-bottom: 10px; } .content { padding: 20px; max-width: 800px; margin-left: auto; margin-right: auto; } .section { background-color: var(--accent-color); color: white; padding: 20px; border-radius: 10px; margin-bottom: 20px; } .footer { background-color: var(--primary-color); padding: 10px; color: white; text-align: center; clear: both; } /* Responsive design */ @media (max-width: 600px) { .section { padding: 15px; } }