html,
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(
    320deg,
    #eb92be,
    #ffef78,
    #63c,
    rgb(27, 152, 209)
  );
  background-size: 400% 400%;
  background-attachment: fixed;
  text-align: center;
  margin: 0;
  padding: 0;
}

.rounded {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
}

.flex-container img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flex-container img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.rounded {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .flex-container {
    flex-direction: row;
    justify-content: center;
    gap: 10%;
  }
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  bottom: 20px;
  min-height: 100vh;
}

.impressum-button {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 20px;
}

.impressum-button:hover {
  color: black;
}