<!DOCTYPE html>

<html lang="de">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Vollbild-Video</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            overflow: hidden;

        }

        html, body {

            width: 100%;

            height: 100%;

            background: black;

        }

        video {

            width: 100%;

            height: 100%;

            object-fit: cover;

            position: absolute;

        }

    </style>

</head>

<body>

    <video autoplay loop muted>

        <source src="video.mp4" type="video/mp4">

        Dein Browser unterstützt das Video-Tag nicht.

    </video>

</body>

</html>