@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;
}

div.stars1::after {
  top: 750px;
}

div.stars1::after {
  top: 1000px;
}

div.stars2::after {
  top: 750px;
}

div.stars3::after {
  top: 750px;
}

div.section1 {
  margin-top: 75px;
}

.section1 div.headline-wrapper {
  position: relative;
  height: 100px;
}

.silver-headline h2 {
  font-size: 3.5em;
}

div.card-seite-erstellt {
  position: relative;
  margin-bottom: 100px;
  background: #01082d;
  opacity: 1;
  display: flex;
  flex-direction: column;
  width: 66.6%;
  min-height: 40vh;
  max-height: 100vh;
  border-radius: 20px;
  padding: 50px;
  gap: 25px;
  font-size: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: silver;
  font-weight: bold;
}

.card-seite-erstellt::before,
.card-seite-erstellt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from var(--deg) at center, #00c3ff, #4d0199, #6300c6, #009dcd);
  border-radius: inherit;
  padding: 4px;
  z-index: -222;
  box-sizing: content-box;
  animation: autoRotate 20s linear infinite;
  left: -0.2em;
  top: -0.1em;
}

.card-seite-erstellt::after {
  filter: blur(20px);
}

@keyframes autoRotate {
  to {
    --deg: 360deg;
  }
}
@media screen and (max-width: 992px) {
  .section1 div.headline-wrapper {
    position: relative;
    top: 10px;
    height: 100px;
  }
  .silver-headline h2 {
    font-size: 3em;
  }
}
@media screen and (max-width: 768px) {
  .section1 div.headline-wrapper {
    position: relative;
    top: 10px;
    height: 100px;
  }
  .silver-headline h2 {
    display: block;
    font-size: 2.5em;
  }
}