27 lines
459 B
CSS
27 lines
459 B
CSS
/* Grundlegendes Styling für die Seite */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
/* Styling für den Header */
|
|
h1 {
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
/* Button für die Navigation */
|
|
button {
|
|
padding: 10px 20px;
|
|
background-color: #3498db;
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #2980b9;
|
|
} |