html,
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(
    320deg,
    #eb92be,
    #ffef78,
    #63c,
    rgb(48, 123, 158)
  );
  background-size: 400% 400%;
  background-attachment: fixed;
  text-align: center;
  margin: 0;
  padding: 0;
  animation: gradientAnimation 5s ease infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rounded {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  bottom: 20px;
  padding-bottom: 20px;
}

.impressum-button {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.impressum-button:hover {
  color: black;
}
