body {
    background-color: #60e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.container {
    background-color: #ffffff; /* Hintergrundfarbe der zentrierten Fläche */
}
.container h1 {
    text-align: center;
}
.menuleiste {
    background-color: #000000;
}

.menuleiste ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menuleiste li {
    display: inline-block;
}

.menuleiste a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
}

.menuleiste a:hover {
    background-color: #333;
}

/* Dropdown-Stil */
.dropdown:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    background-color: #000000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.submenu li {
    display: block;
}
.inhalt {
    text-align: center;
    max-width: 600px; /* Maximalbreite des Inhalts */
    margin: 0 auto; /* Inhalt in der Mitte ausrichten */
    padding: 40px;
    text-align: left;
}

.inhalt h1 {
    color: #000000;
    font-weight: bold;
}

.inhalt p {
    color: #000000;
    font-size: 16px;
}
.image-container {
    text-align: center;
    color: #000000;
    font-size: 16px;
}
.image-container-right {
    color: #000000;
    font-size: 16px;
    float: right;
    margin-left: 20px;
}
.image-container-left {
    color: #000000;
    font-size: 16px;
    float: left;
    margin-right: 20px;
}
.link {
    color: #60e4e4;
}
.danke-inhalt {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}
.profile-name {
    color: #60e4e4;
    font-weight: bold;
}
.profile-rolle {
    font-weight: bold;
    font-style: italic;
}
#gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
    gap: 1em;
}

#gallery > figcaption {
    grid-column: 1 / -1;
}
#gallery img {
    width: 200px;
}
#profile {
    display: grid;
    grid-template-columns: auto 1fr; /* First column width adjusts to content, second column takes remaining space */
    gap: 1em;
}

#profile > *:first-child {
    grid-column: 1; /* Place the first item in the first column */
    grid-row: 1; /* Place the first item in the first row */
}

#profile > *:nth-child(n+2) {
    grid-column: 2; /* Place all items starting from the second one in the second column */
}
#profile img {
    width: 200px;
}