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

section {
  margin: 5vh 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;
}

section div.grid-container-impressum {
  position: relative;
  background: #010624;
  width: 80%;
  min-height: 80vh;
  margin: 0 auto;
  margin-top: 7.5vh;
  margin-bottom: 100px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-template-areas: "tmg unternehmen";
  border-radius: 25px;
  opacity: 1;
  gap: 25px;
}

.grid-container-impressum::before,
.grid-container-impressum::after {
  content: "";
  position: absolute;
  width: 100.5%;
  height: 101%;
  background: conic-gradient(from var(--deg) at center, #00c3ff, #4d0199, #6300c6, #009dcd);
  border-radius: inherit;
  padding: 2px;
  z-index: -222;
  box-sizing: content-box;
  animation: autoRotate 30s linear infinite;
  left: -0.2em;
  top: -0.4em;
}

.grid-container-impressum::after {
  filter: blur(5px);
  transform: translateX(-0.5%);
}

@keyframes autoRotate {
  to {
    --deg: 360deg;
  }
}
h2 {
  font-size: 1.8em;
  text-align: left;
  color: rgb(255, 242, 181);
  background-image: linear-gradient(silver 40%, rgb(49, 56, 203) 65%, silver 70%);
  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;
}

.card-tmg {
  position: relative;
  height: 100%;
  grid-area: tmg;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 50px;
  background: radial-gradient(ellipse, #02162e, #01082d 100%);
  padding: 0 25px 0 25px;
}

div.flex-container-tmg {
  display: flex;
  flex-direction: column;
  color: silver;
  font-size: 0.9em;
  gap: 20px;
}
div.flex-container-tmg h3 {
  position: relative;
  margin-top: 50px;
  text-align: left;
  font-size: 1.2em;
}

span.unternehmensgegenstand {
  font-weight: 800;
}

span.berechtigungen {
  font-weight: 800;
}

.card-unternehmen {
  position: relative;
  height: 100%;
  grid-area: unternehmen;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-radius: 50px;
  background: radial-gradient(ellipse, #02162e, #01082d 100%);
  padding: 65px 25px 0 25px;
  color: silver;
}
.card-unternehmen h3 {
  text-align: left;
  font-size: 1.2em;
  margin-bottom: 10px;
}

div.flex-container-inhalt {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

adress.adress {
  font-size: small;
}