body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    position: relative;
    height: 100vh;
}

/* Hintergrund-Bild */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('paper.png');
    background-size: cover;
    background-position: center;
    z-index: -1; /* Hinter allem hinterlegen */
}

/* Linke Leiste mit Buttons */
.left-panel {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Inhalt in der Mitte */
.content {
    position: fixed;
    transform: translateY(-50%);
    text-align: center;
    color: #000;
    z-index: 5;
    top: 50px;       /* Abstand vom oberen Rand anpassen */
    left: 500px;     /* Abstand vom linken Rand anpassen */
    width: 80%;      /* Breite des Containers, anpassen nach Bedarf */
    max-width: 600px; /* Maximale Breite, um es übersichtlich zu halten */
    background-color: rgba(255, 255, 255, 0.8); /* optional, für bessere Lesbarkeit */
    padding: 20px;   /* Innenabstand */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* optional, für einen Schatten */
    /* Optional kannst du hier noch andere Style-Parameter hinzufügen */
}
}

/* Überschrift und Text */
h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

/* Das schwebende Head-Bild */
.head-image {
    position: fixed;
    bottom: 20%;
    left: 20px;
    width: 250px; /* Anpassen nach Wunsch */
    z-index: 5;
    /* Animation über JavaScript steuern */
		}