/* Farbe */
:root {
  --bgcolor: rgb(17, 23, 43);
}

* {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  scroll-behavior: smooth;
  background-color: var(--bgcolor);
}

header {
  display: flex;
  justify-content: center;
}

main {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: var(--bgcolor);
}

main a {
  color: white;
}

.nav {
  position: absolute;
  left: 1%;
  bottom: 1%;
  opacity: 0.4;
  padding: 0.5em;
  z-index: 1;
  background-color: white;
}

.nav:hover{
  opacity: 1;
}

.impressum {
  margin-top: 25vh;
}
.logo {
  width: 10em;
  margin: auto;
  align-content: center;
}

/* IDs */

#video {
  max-width: 100vw;
  max-height: 100vh;
}

#impressum {
  display: block;
  height: fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  color: white;
}

#kontakt {
  margin: 1em;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
  width: 0px;
}
