/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f5;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            min-height: 100vh;
        }
.videoplayer {
    width: 100%;
    position: absolute;
    height: 100%;
}
.link {
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    margin: 28px;
}
.link a {
color: #4a4a4a;
}
        h1 {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 1600px; /* Größer für noch bessere Darstellung */
            padding-bottom: 56.25%; /* 16:9 Verhältnis */
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            background-color: #f0f0f5;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-container:hover {
            transform: translateY(-10px);
            box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
        }

        .video-container video {
            position: absolute;
			background-color: #000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        footer {
            text-align: center;
            margin-top: 30px;
            font-size: 1rem;
            color: #888;
        }

        /* Mobile Optimierung */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .video-container {
                width: 80%;
				padding-bottom: 56.25%;
				margin-left: auto;
                margin-right: auto;
                box-shadow: none;
                border-radius: 0;
            }
			.videoplayer {

    height: 80%;
}

            .video-container:hover {
                transform: none;
                box-shadow: none;
            }

            footer {
                font-size: 0.8rem;
            }
        }