body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f9; color: #333; } .container { text-align: center; background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); width: 80%; max-width: 400px; } h1 { margin-bottom: 20px; color: #4caf50; } #activity-card { background: #f9f9f9; border-radius: 8px; padding: 15px; margin-bottom: 20px; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); } #activity-card p { margin: 5px 0; } button { background: #4caf50; color: #fff; border: none; padding: 10px 20px; border-radius: 5px; font-size: 16px; cursor: pointer; transition: background 0.3s; } button:hover { background: #45a049; } /* Styling for the activity */ #content { font-size: 18px; font-weight: bold; color: #333; margin: 10px 0; padding: 10px; } /* Styling for the type */ #type { font-size: 16px; font-style: italic; color: #4caf50; margin-bottom: 10px; padding: 5px; }