:root {
    --dark-bg: #1a1a1a;      /* Dunkler Hintergrund */
    --red-accent: #b22222;   /* Rot für Akzente */
    --light-red: #d32f2f;    /* Helleres Rot für Hover */
    --text-color: #f5f5f5;   /* Helle Textfarbe */
    --border-color: #444444; /* Dunkle Umrandung */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    justify-content: left;
}
.container .text {
    background-color: var(--red-accent);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    color: var(--text-color);
    font-size: 1rem;
    margin-left: 0;
}
h1 {
    background-color: var(--red-accent);
    color: var(--text-color);
    text-align: center;
    padding: 20px;
    font-size: 2rem;
    font-weight: bold;
}
/* Angaben für die Bilder */
/* Style for the image container */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    float: right;
}

/* Style for aligning text next to the image */
.container {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between image and text */
}

.container img {
    max-width: 300px; /* Adjust image size */
    height: auto;
    border-radius: 10px; /* Optional: Rounded corners */
}
/* Red Box for text */

.container .text {
    flex: 1;
    color: var(--text-color);
    font-size: 1rem;
    float: left;
}