/* Grundlegende Styles für die gesamte Seite */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e5d6b1; /* Hintergrundfarbe, die auf der gesamten Seite angezeigt wird */
}

body.visitenkarte {
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center;     /* Vertikale Zentrierung */
    height: 100vh;           /* Volle Höhe des Viewports */
    width: 100vw;            /* Volle Breite des Viewports */
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

.visitenkarte {
    width: 420px;
    border: 1px solid #326500;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in der Breite berücksichtigt werden */
}

.visitenkarte .header {
    background-color: #326500;
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 18px;
}

.visitenkarte .content {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.visitenkarte .text {
    width: 50%;
}

.visitenkarte .text h1 {
    font-size: 16px;
    margin-bottom: 5px;
}

.visitenkarte .text p {
    margin: 5px 0;
    color: #000;
    font-size: 14px;
}

.visitenkarte .image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visitenkarte .image img {
    max-width: 100%;
    height: auto;
    display: block;
}

  .menu {
            position: fixed;
            top: 16%;
            right: 10px;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: 1px solid #000;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .menu ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .menu li {
            margin: 10px 0;
        }
        .menu a {
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }
        .menu a:hover {
            text-decoration: underline;
        }

/* Footer Styles */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px;
    font-size: 14px;
}

footer p {
    margin: 0;
}

/* Cookie-Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

#cookie-banner p {
    margin: 0;
}

#cookie-banner button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #326500;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
