/* Grundlegende Styles für den gesamten Body */ body { font-family: Arial, sans-serif; background-color: #f4f4f9; margin: 0; padding: 0; } /* Header-Styling */ header { background-color: #4CAF50; color: white; padding: 10px 0; text-align: center; } /* Main-Styling */ main { display: flex; justify-content: center; align-items: center; height: calc(100vh - 60px); /* Höhe minus Header-Höhe */ padding: 20px; } /* Container für die Aufgabenliste */ .task-list { max-width: 600px; width: 100%; margin: 0 auto; } /* Styling für einzelne Aufgaben */ .task-item { background-color: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin-bottom: 20px; transition: background-color 0.3s, box-shadow 0.3s; } .task-item a { display: block; padding: 15px; text-decoration: none; color: #333; font-size: 18px; } .task-item:hover { background-color: #f0f8ff; box-shadow: 0 4px 10px rgba(0,0,0,0.2); } .task-item a:hover { color: #4CAF50; }