/* General Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } /* Navbar Styles */ .navbar { background-color: #006400; color: white; display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; position: fixed; width: 100%; top: 0; z-index: 10; } .navbar h1 { margin: 0; } .welcome-message { font-size: 16px; } /* How to Use Section */ .how-to-use { margin-top: 80px; padding: 20px; text-align: center; background-color: white; transition: background-color 0.5s ease; } .how-to-use.in-view { background-color: #006400; color: white; } .steps { display: flex; justify-content: space-around; margin-top: 20px; } .step { width: 30%; padding: 15px; background-color: #e0e0e0; border-radius: 10px; } .step h3 { font-weight: bold; } /* Currency Converter Section */ .converter { margin: 20px auto; width: 80%; max-width: 600px; text-align: center; background-color: white; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .converter input, .converter select { padding: 10px; margin: 10px; font-size: 16px; width: 100%; border: 1px solid #ccc; border-radius: 5px; } .converter button { padding: 10px 20px; background-color: #006400; color: white; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; } .converter button:hover { background-color: #004d00; } /* Footer Styles */ footer { background-color: #f0f0f0; padding: 20px; text-align: center; } footer p { margin: 0; } .social-media a { margin: 0 10px; text-decoration: none; color: #333; } /* Responsive Design */ @media screen and (max-width: 768px) { .steps { flex-direction: column; align-items: center; } .step { width: 80%; margin: 10px 0; } }