/* === BASE === */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica;
  color: #d2d2ca;
  letter-spacing: 0.03em;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

/* LINKS ALLGEMEIN */
a {
  color: #d2d2ca;
  text-decoration: underline;
}

a:hover {
  color: #8a8a86;
}

/* === HERO === */

.hero {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  margin-bottom: 50px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo {
  max-width: 120px;
  width: 100%;
  cursor: pointer;
  opacity: 0.8;
  filter: blur(0.2px);
}

/* === LINKS (HERO) === */

.links {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.link-label {
  font-size: 15px;
  font-weight: bold;
}

/* === CONTENT === */

.content {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-element {
  margin-bottom: 100px;
}

.text-element {
  font-size: 15px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  margin-top: 10px;
}

/* === IMAGES === */

.image-link {
  text-decoration: none;
  display: block;
}

.image-wrapper {
  display: block;
}

.content-image {
  width: 100%;
  display: block;
}

/* === IFRAMES === */

.external-iframe {
  margin-top: 20px;
}

/* === RESPONSIVE === */

@media (max-width: 460px) {
  .links {
    flex-wrap: wrap;
    justify-content: center;
  }
}