@charset "UTF-8";
body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
}
video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Macht sicher, dass das Video immer den gesamten Hintergrund abdeckt */
            z-index: -1; /* Video hinter den Inhalt legen */
}
.content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            z-index: 1;
}
.link-box {
  margin-top: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.link-box a {
  color: #00bfff;
  display: block;
  margin: 0.5rem 0;
  text-decoration: none;
  font-size: 1.2rem;
}

.link-box a:hover {
  color: #ffd700;
}
