<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta
      name="viewport"
      content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0"
    />
    <title>Access Restricted, But More Awaits!</title>
    <style>
      @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
    </style>
    <style type="text/css">
      body {
        margin: 0;
        font-family: "Lexend", sans-serif;
      }

      .bg {
        background-image: url("images/bg.png");
        background-size: cover;
        background-repeat: no-repeat;
      }

      .container {
        height: 100vh;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .container-content {
        max-width: 450px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
      }

      .title {
        font-size: 22px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.02em;
        text-align: center;
        margin-top: 40px;
      }

      .description {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-align: center;
        max-width: 450px;
      }

      .button {
        background: #4622c5;
        color: #fff;
        border-radius: 12px;
        padding: 15px 80px;
        text-decoration: none;
        margin-top: 20px;
        transition: 0.3s;
      }

      .button:hover {
        opacity: 0.8;
      }

      .img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
    </style>
  </head>
  <body class="bg">
    <div class="container">
      <div class="container-content">
        <div>
          <img
            src="images/locked.png"
            alt="Locked location image"
            class="img"
          />
        </div>
        <h1 class="title">Access Restricted, But More Awaits!</h1>
        <p class="description">
          It looks like our site isn't available in your region due to security
          measures.
        </p>
      </div>
    </div>
  </body>
</html>
