<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="utf-8" />

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

  <title>MovieGraphics</title>

  <style>

    html,body { height:100%; margin:0; font-family: Arial, sans-serif; }

    body {

      background: #ffffff;

      display:flex;

      align-items:center;

      justify-content:center;

      padding: 40px;

      color:#222;

    }

    .container {

      text-align:center;

      max-width:900px;

      width:100%;

    }

    img.logo {

      max-width: 320px;

      width: 60%;

      height: auto;

      display:block;

      margin: 0 auto 22px;

    }

    .btn {

      display:inline-block;

      background:#008080;

      color:#fff;

      padding:12px 22px;

      border-radius:8px;

      text-decoration:none;

      font-weight:600;

      box-shadow: 0 6px 18px rgba(0,0,0,0.08);

    }

    .btn:hover { background:#006666; }

    .small { margin-top:10px; color:#666; font-size:13px; }

  </style>

</head>

<body>

  <div class="container">

    <img src="bilder/start.jpg" alt="MovieGraphics" class="logo" />

    <p><a class="btn" href="/clearance/">Send Clearance Request</a></p>

    <p class="small">Click to open the Request for Clearance form.</p>

  </div>

</body>

</html>