.impressum-button {
  border-radius: 30px;
  border: 2px solid rgb(255, 30, 255);
  background-color: rgb(255, 30, 255);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
  text-decoration: none;
  color: #fff;
  cursor: default;
}

.impressum-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  min-width: 320px;
  max-width: 1000px;
  text-align: left;
  color: #000;
  font-family: 'UncutSans', sans-serif;
}

.impressum {
  font-size: clamp(32px, 5vw, 36px);;
  font-weight: 600;
}

.text {
  font-size: clamp(20px, 5vw, 24px);;
  font-weight: 400;
}

.headline {
  font-weight: 700;
}

.link {
  position: relative;
  overflow: hidden;
  padding: 0px 10px;
  border-radius: 20px;
  border: 2px solid #000;
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(to right, #000, #000);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left;
  transition: background-size 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
  z-index: 0;
}
  
.link:hover {
  color: #fff;
  background-size: 100% 100%;
}
  