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 15s ease infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1,
h2 {
  color: black;
  margin: 10px 0;
  align-items: center;
}

.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%;
  }
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  right: 3%;;
  top: 45%;
  transform-origin: right bottom;
  font-size: 45px;
  color: black;
  color: rgba(51, 51, 51, 0.7);
}
.vertical-text1 {
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  position: absolute;
  left: 1%;
  top: 50%;
  transform-origin: left bottom;
  font-size: 45px;
  color: black;
  color: rgba(51, 51, 51, 0.7);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  display: none;
  z-index: 1000;
}
.cookie-banner button {
  margin-left: 20px;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.text {
  color: black;
  text-decoration: none;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.impressum-button {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 20px;
}

.impressum-button:hover {
  color: black;
}
