 
 <!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    

<style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            
            max-width: 700px;
           
            padding: 20px;
   
        }
        h1 {
            color: #ff69b4;
        }
        h2 {
            color: #8a2be2;
        }
        .color-box {
            width: 100px;
            height: 100px;
            display: inline-block;
            margin: 10px;
        }

.color-box a:hover {
    background-color: #800020; /* Weinrot für Hover-Effekt */
    color: #333;
}

/* Allgemeine Einstellungen */
* 

body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1; /* Sehr helles Grau für den Body */
    color: #333; /* Dunkelgraue Textfarbe für bessere Lesbarkeit */
    display: flex;
    flex-direction: column; /* Inhalte untereinander anordnen */
    align-items: center;
    height: 160%;
    padding: 20px;
}

/* Header */
header {
    width: 80%;
    background-color: #800020; /* Weinrot */
    color: white;
    padding: 20px;
 box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Abstand nach unten */
}

/* Menüleiste */
nav {
    width: 80%;
    background-color: #333; /* Dunkelgrau für das Menü */
 

    border-radius: 8px;
    }

nav a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
    
}

nav a:hover {
    background-color: #800020; /* Weinrot für Hover-Effekt */
    color: #333;
}

/* Hauptinhalt (Body) */
main {
 box-sizing: border-box;
    width: 118%;
    background-color: white;
    padding: 60px;
    border-radius: 188px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px; /* Abstand nach unten */
    text-align: center;
    color: #333; /* Dunkelgrauer Text für den Hauptinhalt */
}

/* Button */
button {
    background-color: #333; /* Weinrot für den Button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #660016; /* Dunkleres Weinrot beim Hover */
}

/* Footer */
footer {
    width: 120%;
    height: 120px;
    background-color: ##660016; /* Dunkelgrau für den Footer */
    color: black;
    text-align: center;
    padding: 45px;
    border-radius: 8px;
    margin-top: 60px;
}
 </style>
