/* ===========================================================
     Basic
* =========================================================== */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  overflow: hidden;
}

body {
  background-color: #000;
  color: #fff;
  line-height: 1.1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 26px;
}

.nowrap {
  white-space: nowrap;
}

::selection {
  color: #ffffff;
  background: #000;
}

::-moz-selection {
  color: #ffffff;
  background: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #ffffff;
}

.tricky {
  display: none;
}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child) {
  margin-bottom: 25px;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 15px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Füllt die Höhe des Viewports */
  width: 100vw; /* Füllt die Breite des Viewports */
}

.logo {
  width: 80%; /* Standardbreite für mobile Geräte */
  max-height: 100vh; /* Verhindert, dass das Logo größer als der Viewport wird */
  height: auto; /* Erhält das Seitenverhältnis */
  margin-bottom:70px;
}

/* Media Query für Desktop-Geräte */
@media (min-width: 768px) {
  /* 768px ist ein gängiger Umbruchpunkt für Tablets und Desktops */
  .logo {
    width: 40%; /* Reduziert die Breite auf Desktops */
  }
}

.footer {
  position: absolute;
  bottom: 5%;
  width: 100%;
  text-align: center;
}

a.link {
  color: #fff;
  white-space: nowrap;
  margin-left: 25px;
}
a.link2 {
  font-size: 17px;
  white-space: nowrap;
  margin-left: 25px;
}

a.link:first-child,
a.link2:first-child {
  margin-left: 0px;
}

a.link:hover,
a.link2:hover {
  opacity: 0.5;
}

#bgvideo {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #ccc;
}

/* ===========================================================
     Responsive
* =========================================================== */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  body {
    font-size: 20px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 759px) {
  body {
    font-size: 20px;
    line-height: 1.2;
  }
}
