

<!doctype html>
<head>
  <!-- Add any meta content here i.e. -->

  <!--
    <title>Your site title</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />  
   -->

  <!-- Add any custom Styling here -->

  
    <style>
body { 
  text-align: center; 
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa') no-repeat center center fixed; 
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.content {
  background-color: rgba(255, 255, 255, 0.75); 
  background-size: 100%;      
  color: inherit;
  border-radius: 15px;  
  padding: 2rem;      
}

h1 { font-size: 40px;}
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; margin: 0 auto; }
a:hover { color: #333; text-decoration: none; }

@media (min-width: 1000px) {
  body {
    padding: 150px; 
  }
  .content {
    margin: auto;
    padding: 1px 100px 10px 100px;
  }
  article {
    width: 75%;
  }
}
</style>
  
</head>

<body>
<article> 
  <div class="background">
    <div class="content">
      <h1>&#x1F6A7; Site under maintenance &#x1F6A7;</h1>
        
        <p>Thanks for hanging in there!</p>
    </div>
  </div>
</article>
</body>
