<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>luckymag.com</title>
    <style>
      body,
      html {
        width:100%;
        margin: 0;
        padding: 0;
        height: 100%;
        /* height: 6952px; */
      }
      div {
        margin: 0;
        padding: 0;
      }
      .bg {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("./images/site-preview-desktop.png");
      }
      @media (max-width: 1280px) {
        html,body {
          /* height: 6774px; */
        }
        .bg {
          background-image: url("./images/site-preview-tablet.png");
        }
      }
      @media (max-width: 450px) {
        html,body {
          /* height: 7500px; */
        }
        .bg {
          background-image: url("./images/site-preview-mobile.png");
        }
      }

    </style>
  </head>

  <body>
    <div class="bg"></div>
  </body>

</html>
