/* Simple Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Basic Styling */ body { font-family: 'Helvetica', sans-serif; background-color: #fff; color: #000; line-height: 1.4; } .container { max-width: 400px; margin: 50px auto; padding: 20px; text-align: center; } header h1 { font-size: 2em; margin-bottom: 0.5em; } header p { font-size: 1.2em; color: #000; margin-bottom: 2em; } /* Responsive Design */ @media (max-width: 400px) { .container { width: 100%; margin: 20px auto; padding: 10px; } } .button { display: inline-block; padding: 10px 30px; font-size: 18px; cursor: pointer; background-color: #000; /* Dark grey for OLED efficiency */ color: #fff; border: none; border-radius: 50px; /* High border-radius for pill shape */ transition: background-color 0.3s; } .button:hover { background-color: #333333; /* Slightly lighter grey for hover state */ } .menu-option { margin-bottom: 20px; } .menu-option a { text-decoration: none; color: #fff; display: flex; align-items: center; justify-content: center; } .menu-option svg.logo { width: 50px; height: 50px; margin-right: 40px; }