<!DOCTYPE html>

<html lang="he">

<head>

    <meta charset="UTF-8">

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

    <title>סבא רובי</title>

    <style>

        body, html {

            margin: 0;

            padding: 0;

            height: 100%;

            overflow: hidden;

            display: flex;

            align-items: center;

            justify-content: center;

            background-color: #000;

        }

        video {

            position: fixed;

            top: 50%;

            left: 50%;

            min-width: 100%;

            min-height: 100%;

            width: auto;

            height: auto;

            transform: translate(-50%, -50%);

            z-index: -1;

        }

        .search-container {

            position: relative;

            z-index: 1;

            text-align: center;

        }

        input[type="text"] {

            padding: 10px;

            font-size: 18px;

            border-radius: 10px;

            border: none;

            width: 300px;

            outline: none;

        }

        button {

            padding: 10px 20px;

            font-size: 18px;

            border-radius: 10px;

            border: none;

            background-color: #0066ff;

            color: #fff;

            cursor: pointer;

        }

    </style>

</head>

<body>

    <video autoplay loop muted>

        <source src="20250401_0156_Light's Journey to Quote_simple_compose_01jqq6q6pnfyc8jc2x58pbram1.mp4" type="video/mp4">

    </video>

    <div class="search-container">

        <input type="text" placeholder="מה אתה מחפש?">

        <button>חפש</button>

    </div>

</body>

</html>