/* * Font Awesome 6.0.0 by @FamFWL <> * License: /license/mit * Copyright 2023 Fonticons, Inc */ @import url('/css2?family=Roboto:wght@100,300,400,700&display=swap'); /* Reset default font-family */ * { font-family: 'Roboto', sans-serif; } /* Base styles */ body { margin: 0; padding: 0; } /* Navigation bar */ .navbar { background-color: #3498db; color: white; text-align: center; padding: 1rem 0; } .navbar h1 { margin: 0; padding: 0; font-size: 2.5em; } /* Footer */ .footer { background-color: #2c3e50; color: white; text-align: center; padding: 1rem 0; } .footer p { margin: 0; padding: 0; font-size: 1em; } /* Responsive styles */ @media (max-width: 600px) { .navbar h1 { font-size: 2rem; } }