* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.anrede{
    text-decoration: underline;
}

h1 {
    color: #ff6a91; /* Neue Farbe für die Hauptüberschrift */
}

.image-gallery {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.wedding-image {
    width: auto; /* Oder die gewünschte Breite */
    height: 300px;
    margin: 0 10px; /* Abstand zwischen Bildern */
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #4A90E2; /* Neue Farbe für die Unterüberschrift */
    margin-top: 20px;
    margin-bottom: 10px;
}

.message, .poem {
    margin-bottom: 20px;
    padding: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}
