body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header img {
  width: 300px;
  margin: 100px;
  border-radius: 0; /* Standard: keine Abrundung */
  transition: all 0.3s ease;
}
.header img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%; /* Vollständiger Kreis */
  overflow: hidden; /* Verhindert, dass das Logo über die abgerundeten Ecken hinausragt */
}
.portal-text {
  font-size: 18px;
  color: #333;
}
a {
  color: #ccc;
  text-decoration: none;
}
a:visited {
  color: #ccc;
  text-decoration: none;
}
