body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
}

main {
    padding: 20px;
}

.button-container {
    display: flex;
    flex-wrap: wrap; /* Buttons umbrechen, wenn nicht genug Platz ist */
    justify-content: center; /* Buttons zentrieren */
    gap: 10px; /* Abstand zwischen den Buttons */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Blaue Farbe */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Sanfter Farbwechsel beim Hovern */
}

.button:hover {
    background-color: #0056b3; /* Dunkleres Blau beim Hovern */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: fixed; /* Footer am unteren Rand fixieren */
    bottom: 0;
    width: 100%;
}