/* style.css */ @import url('/css2?family=Roboto: wght@400&display=swap'); body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; } .container { max-width: 1200px; margin: auto; padding: 30px; } .header { text-align: center; color: #333; font-size: 2.5em; margin-bottom: 30px; } .article { background: white; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .article h2 { color: #22c7d6; } .article p { color: #555; } .footer { margin-top: 40px; text-align: center; font-size: 0.9em; color: #aaa; } @media (max-width: 600px) { .header { font-size: 2em; } }