html {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: black;
}

#mainvid {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

#cnt {
  display: block;
  position: relative; /* Wichtig für die Positionierung von Kind-Elementen */
  margin: 0;
  width: 100vw;
  height: 100vh;    
}

.ctr {
  display: block; /* Ändere von inline zu block oder inline-block */
  position: absolute; /* Ermöglicht Positionierung relativ zu #cnt */
  bottom: 50%; /* Position am unteren Rand */
  width: 100%; /* Füllt die gesamte Breite aus */
  text-align: center; /* Zentriert den Text horizontal */
  
  color: #fafffa;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 8em;
  font-style: normal;
  padding: 0;
    
}


@media only screen and (max-width: 1024px) {
  .ctr {
    font-size: 4em;
    padding-bottom: 3em;
  }
}
@media only screen and (max-width: 460px) {
  .ctr {
    font-size: 2em;
  }
}

/*# sourceMappingURL=stylez.css.map */
