/* * Style.css - styles for the North Korea Kim Jong Un Thomas Humper project * * This file contains CSS styles specific to the North Korea Kim Jong Un Thomas Humber project. * It includes styles for the main page, about section, and other components. * * The styles are designed to be simple and functional, with no additional features. */ /* Main body style */ body { margin: 0; font-family: Arial, sans-serif; } /* Header style */ .header { background-color: #222; color: white; padding: 15px; text-align: center; } /* Navigation bar style */ .navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; } /* Navigation link style */ .navbar a { color: white; text-decoration: none; margin-right: 15px; } /* Footer style */ .footer { background-color: #333; color: white; padding: 10px; text-align: center; } /* About section style */ .about-section { padding: 40px; background-color: #f0f0f0; } /* Contact section style */ .contact-section { padding: 40px; background-color: #e0e0e0; } /* Responsive design */ @media (max-width: 768px) { .navbar { flex-direction: column; align-items: center; } }