<?php
$host = $_SERVER['HTTP_HOST'];
?>
<!DOCTYPE html>
<html>

<head>
    <title><?php echo($host); ?></title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="css/w3.css">
    <!-- link rel="stylesheet" href="css/all.min.css" -->
    <link rel="stylesheet" href="css/font-awesome.min.css">
    <!--
    <link rel="stylesheet" href="css/w3-colors-2017.css">
    <!-- -->
    <link rel="stylesheet" href="css/style-b.css">
    <link rel="stylesheet" href="css/custom.css">
    <meta charset="UTF-8">
    <style>
        body {
            width: 100%;
            height: 100vh;
            background-color: black;
            color: white;

        }

        .middle-block {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            font-size: 24px;
            line-height: 1em;
            font-family: helvetica, sans-serif;
            font-style: normal;
            letter-spacing: inherit;
            text-align: center;
            text-transform: uppercase;
            border: 1px solid gold;
            padding: 16px;
        }

    </style>
</head>

<body>
    <div class="middle-block">
        <div>
            <h1>
                <?php echo($host); ?>
            </h1>
            <p>
                Temporarily unavailable!
            </p>
            <p>
                Try again later!
            </p>
        </div>
    </div>
</body>

</html>

