/* Grundlegende Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #f4f4f4, #ff0000); /* Hintergrundfarbe von Grau zu Rot */
}

/* Header-Stile */
.header {
    background: linear-gradient(to right, #ff0000, #f4f4f4); /* Hintergrundfarbe von Rot zu Grau */
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

/* Hauptinhalt Stile */
.main-content {
    margin: 15px;
}

/* Fußzeilen-Stile */
.footer {
    background: linear-gradient(to right, #ff0000, #f4f4f4); /* Hintergrundfarbe von Rot zu Grau */
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* Stile für Überschriften */
h1, h2, h3, h4, h5, h6 {
    color: #000000; 
}

/* Stile für Links */
a {
    color: #ff0000; /* Rot */
    text-decoration: none;
}

/* Stile für Buttons */
.button {
    background: linear-gradient(to right, #ff0000, #f4f4f4); /* Hintergrundfarbe von Rot zu Grau */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
