body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}

header {
    background: #6085cb;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header h1 a {
  color: #fff;
  text-decoration: none;
}

header h1 a:hover {
  text-decoration: underline;
}


header h2 {
  margin: 6px;
  font-size: 20px;
}

.content {
  margin: 8px;
}

nav {
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

.hinweise {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 800px;
  margin: 20px 0;
}

.hinweise h2 {
  margin-top: 0;
  font-size: 22px;
}

.hinweise p {
  margin: 10px 0 0 0;
  font-size: 16px;
  color: #555;
}

.steckbrief-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    margin: 20px 0;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.profilfoto {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.header h2 {
    margin: 10px 0 0 0;
    font-size: 18px;
}

.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.detail h2 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.detail div {
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 0px;
    margin-top: 0px; 
    font-size: 16px;
    color: #555;
}

.detail div p {
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 0px;
  margin-right: 0px;  
} 

.detail div:first-child  {
  margin-top: 2px;
}

.detail div:last-child  {
  margin-bottom: 2px;
}

.nach-oben {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  background: #6085cb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

.nach-oben:hover {
  background: #555;
}

footer {
    background: #6085cb;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    bottom: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design für Mobilgeräte */
@media (max-width: 800px) {
  .details {
      grid-template-columns: 1fr;
  }
}