body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}

.content-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 10px;
}

.profilbild {
  width: 100%; /* Jetzt passt sich das Bild dem Container an */
  height: auto;
  display: block;
}

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

li a {
  display: block;
  width: 100%; /* gleiche Breite wie Container */
  margin: 10px 0;
  text-decoration: none;
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
}

  .custom-link a {
    text-decoration: none;   /* Unterstrich entfernen */
    color: red;              /* Farbe immer rot */
  }

  .custom-link a:visited {
    color: red;              /* Auch besuchte Links rot */
  }

  .custom-link a:hover {
    color: #333;          /* Optional: beim Hover dunkleres Rot */
  }
