<html>

<html lang="hu">

<head>

    <meta charset="UTF-8">

    <title>Feltöltés alatt</title>

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

    <style>

        body {

            margin: 0;

            padding: 0;

            background: url('https://source.unsplash.com/1600x900/?electric,tools') no-repeat center center fixed;

            background-size: cover;

            font-family: Arial, sans-serif;

            color: white;

            text-align: center;

            height: 100vh;

            display: flex;

            flex-direction: column;

            justify-content: center;

            backdrop-filter: brightness(0.7);

        }

        .overlay {

            background-color: rgba(0, 0, 0, 0.5);

            padding: 40px;

            border-radius: 10px;

        }

        h1 {

            font-size: 3em;

            margin-bottom: 20px;

        }

        p {

            font-size: 1.5em;

            margin: 10px 0;

        }

    </style>

</head>

<body>

    <div class="overlay">

        <h1>Feltöltés alatt</h1>

        <p>Erdős Sándor</p>

        <p>Telefon: 06 70 77 60 500</p>

    </div>

</body>

</html>