html, body {
  height: 100%; /* Volle Höhe */
  margin: 0; /* Standard-Ränder entfernen */
  padding: 0; /* Standard-Abstände entfernen */
  scroll-behavior: smooth;
  font-family: Tahoma, sans-serif;
  background-color: #dededf;
}

.light h3 {
  font-family: Tahoma, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
  color: #333333;
}

.light h2 {
  font-family: Tahoma, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: bold;
  color: #333333;
}

.dark h2 {
  font-family: Tahoma, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 400;
  color: #f7f2ebff;
}

.dark h3 {
  font-family: Tahoma, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 400;
  color: #6a6a6a;
}

/* unvisited link */
a:link {
  color: #a1a1a6;
  text-decoration: none;
}
/* visited link */
a:visited {
  color: #a1a1a6;
  text-decoration: none;
}
/* mouse over link */
a:hover {
  color: #f7f2ebff;
  text-decoration: none;
}
/* selected link */
a:active {
  color: #a1a1a6;
  text-decoration: none;
}

.cover{
  background-image: url(../assets/background.jpg);
  width: 100%;
  height: 100vh;
  text-align:center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay-dotted:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0, 0, 0,0.5) url(../assets/dot_overlay.png) repeat top left;
  opacity: 1;
}

.logo{
  z-index: 1;
}

.logo img{
  width: max(340px);
}

.social{
   margin-bottom: 32px;
   margin-top: 16px;
  z-index: 1;
}

.social img{
  margin: 8px;
}

.hero_scroll {
  position: absolute;
  bottom: 8px;
  z-index: 1;
}

.hero_link {
  position: relative;
}

.hovering_scroll {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  animation-name: hovering_scroll;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes hovering_scroll {
  from {
    transform: translate(0, 0px);
    opacity: 0;
  }
  50% {
    transform: translate(0, 20px);
    opacity: 1;
  }
  to {
    transform: translate(0, 0px);
    opacity: 0;
  }
}

.container{
  display: flex;
  justify-content: center;
}

.welcome{
  text-align: center;
  padding-top: 32px;
}

.grid_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 576px));
  grid-auto-rows: 400px;
  row-gap: 32px;
  margin-top: 50px;
  margin-bottom: 80px;
  justify-content: center;
}

.grid_footer{
  display: grid;
  background-color: #212529;
  grid-template-columns: repeat(auto-fit, minmax(100px, 400px));
  grid-auto-rows: auto;
  row-gap: 32px;
  column-gap: 24px;
  margin-top: 50px;
  justify-content: center;
}

.footer_item{
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.footer{
  font-size: 12px;
  text-transform: uppercase;
  line-height: 42px;
  margin-top: 32px;
}

.card{
  border-radius: 0.375rem;
  color: #fff;
  box-shadow: 0px 3px 5px rgba(68, 68, 68, 0.6);
  height: 100%;
  margin-left: 12px;
  margin-right: 12px;
}

.black_fadeout {
  position: relative;
  height: 50%;
  right: 0;
  left: 0;
  bottom: 0;
  top: 50%;
  min-width: 100%;
  background-image:linear-gradient( transparent, black) !important;
  border-radius: calc(0.375rem - 1px);
}

.hero_text {
  text-align: left;
  padding-left: 24px;
  padding-top: 64px;

}

.hero_title {
  font-size: 1.25em;
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(45deg,rgb(255, 0, 128), #7c4cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
}

.hero_sub {
  color: #f7f2ebff;
  font-size: 1em;
  line-height: 1.5;
}

.hero_sub_big {
  margin-top: -5px;
  color: #f7f2ebff;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1.5;
}