/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif; /* Standardschriftart für den Body */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Überschriften */
h1 {
    font-family: Verdana, Geneva, sans-serif; /* Websichere Schriftart für h1 */
    font-weight: bold;
    color: #444;
    text-align: center;
}

h2 {
    font-family: Tahoma, Geneva, sans-serif; /* Websichere Schriftart für h2 */
    font-weight: bold;
    color: #555;
    text-align: center;
}

h3 {
    font-family: Georgia, serif; /* Serifen-Schriftart für h3 */
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Buttons */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: Tahoma, Geneva, sans-serif;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
