@charset "UTF-8";
/* Der _ im Namen sagt SASS, dass es sich um ein Modul handelt, das woanders importiert wird. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Marlboro";
  src: url(./assets/fonts/Marlboro.ttf);
}
:root {
  --gold: silver;
  --light-shadow: rgb(130, 180, 180);
  --dark-shadow: rgb(220 , 200, 200);
  --font-logo: "Marlboro";
}

html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  /* soll niemals kleiner sein als die Bildschirm-Grösse - vh = viewport height */
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  background: radial-gradient(ellipse, #02162e, #000418 100%);
  width: 100%;
  scrollbar-gutter: stable;
  gap: 100px;
}

section {
  margin: 15vh 0 100px 0;
}

section > h1 {
  position: relative;
  color: rgb(255, 242, 181);
  background-image: linear-gradient(rgb(255, 255, 255) 45%, rgb(170, 170, 170) 60%, rgb(192, 192, 192) 84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 3em;
  text-align: center;
}

div.flex-container-datenschutz {
  width: 80%;
  min-height: 80vh;
  margin: 0 auto;
  padding: 50px;
  display: flex;
  flex-direction: column;
  color: silver;
  gap: 25px;
}
div.flex-container-datenschutz h3 {
  position: relative;
  margin-top: 25px;
  text-align: left;
  font-size: 2em;
}
div.flex-container-datenschutz h4 {
  position: relative;
  text-align: left;
  font-size: 1.5em;
  left: -30px;
}