Changed around line 1
+ :root {
+ --primary-color: #4a90e2;
+ --secondary-color: #50e3c2;
+ --background-color: #f5f5f5;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ text-align: center;
+ padding: 2rem;
+ background-color: var(--primary-color);
+ color: white;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem;
+ }
+
+ .options {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ gap: 1rem;
+ }
+
+ .option {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ flex: 1 1 45%;
+ transition: transform 0.3s ease;
+ }
+
+ .option:hover {
+ transform: translateY(-10px);
+ }
+
+ .option h2 {
+ color: var(--primary-color);
+ }
+
+ .option p {
+ font-size: 1rem;
+ }
+
+ button {
+ background-color: var(--secondary-color);
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 1rem;
+ color: white;
+ transition: background-color 0.3s ease;
+ }
+
+ button:hover {
+ background-color: #3bb99f;
+ }
+
+ .result {
+ text-align: center;
+ margin-top: 2rem;
+ display: none;
+ }
+
+ .result h2 {
+ color: var(--primary-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .options {
+ flex-direction: column;
+ }
+
+ .option {
+ flex: 1 1 100%;
+ }
+ }