body {
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  background: var(--background-linear);
  text-align: center;
  justify-content: center;
  overflow-y: scroll;
}

body {
  font-family: var(--font-family);
  text-shadow: 4px 2px 2px black;
  font-weight: bold;
  color: black;
}

section.info {
  background: #212227;
  background: var(--background-linear);
  padding-top: clamp(15px, calc(5.8vw - 20px), 150px);
  padding-bottom: clamp(15px, calc(5.8vw - 20px), 150px);
  padding-left: clamp(5px, calc(8vw - 20px), 8vw);
  padding-right: clamp(5px, calc(8vw - 20px), 8vw);
}

section.info p {
  margin: 0;
}

section.info p.title {
  margin-bottom: clamp(20px, calc(2.4vw - 10px), 60px);
  background: #212227;
  background: var(--background-linear);
  font-size: var(--fs-title);
  border-radius: 50px;
}

section.info p.text {
  font-size: var(--fs-text);
}

section.galerie {
  background: #212227;
  background: var(--background-linear);
  display: flex;
  justify-content: center;
  padding: 0 clamp(10px, calc(15vw / 2), 380px);
  flex-wrap: wrap;
  grid-gap: clamp(10px, calc(4vw / 2), 50px);
}

section.galerie div.image {
  flex: 1;
  aspect-ratio: 3 / 4;
  max-height: 60vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: var(--border) solid black;
  border-radius: 10px;
}

section.banner {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16/5;
  overflow: hidden;
  transform: scale(1.0);
  border-top: var(--border) solid #0c0c0e;
  border-bottom: var(--border) solid #0c0c0e;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

section.banner p {
  margin: 0;
  -webkit-text-stroke: clamp(1px, calc(0.2vw - 2px), 4px) black;
}

section.banner p.title {
  color: #ff9000;
}

section.banner p.subtitle {
  color: #888;
}

section.banner div.banner-text {
  text-align: center;
  font-size: 7vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  animation: pulse 3s ease-in-out infinite;
  display: inline-block;
}

section.footer {
  background: #212227;
  position: relative;
  text-align: center;
  margin-top: 100px;
  font-size: 12px;
  font-family: sans-serif;
}

section.footer div.content {
  display: inline-block;
  width: clamp(100px, 50% ,1000px);
  margin: 30px;
  color: #C0C0C0;
  text-align: left;
}

section.footer a.button {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
