.section-gastinfo1{
    padding: 200px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 300px;
    flex-wrap: wrap-reverse;
    background-color: var(--secondary-color);
}
.section-gastinfo1 h2{
    font-size: 80px;
}
.hausregeln-liste li {
    list-style: none;
    padding-left: 0;
    color: var(--secondary-text-color);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
.hausregeln-liste span {
    color: var( --main-brand-color);
    font-size: 50px;
    margin-right: 50px;
}
.container-wlan {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 1rem;
  }
.container-wlan span {
    color: var(--main-brand-color);
    font-size: 200px;
  }
.container-wlan p {
    color: var(--secondary-text-color);
    font-size: 30px;
}
.container-hausregeln a {
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  padding: 3px;
}
.container-hausregeln a:hover,
.container-hausregeln a:focus {
  color: var(--text-color);
}
.container-hausregeln a::after {
  content: '';
  height: 2px;
  width: 0%;
  background: var(--main-brand-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 150ms ease-in-out;
}
.container-hausregeln a:hover::after,
.container-hausregeln a:focus::after  {
  width: 100%;
}
@media (max-width:800px) {
  .section-gastinfo1{
      padding: 50px 0;
      gap: 20px;
  }
  .section-gastinfo1 h2{
      text-align: center;
      font-size: 12vw;
  }
  .container-wlan span {
    font-size: 12vw;
  }
  .container-wlan p {
    font-size: 20px;
  }
}