<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IP Warning Screen</title>
  </head>
  <style>
body {
  background: #BF0D1F;
  display: flex;
  align-items: center;
  height: 100vh;
}
  main {
    background: white;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    border-radius: 1em;
    padding: 2em 2em;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-height: 61vh;
    height: 61vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 4rem;
  }
  h1 {
    color: #BF0D1F;
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
    font-weight: normal;
  }
  p {
    font-size: 28px;
  }
  img {
    max-width: 214px;
    width: 100%;
    position: absolute;
  }
  #warning-1 {
    left: -3.7em;
    top: -60px;
    transform: rotate(-20deg);
  }
  #warning-2 {
    right: -4em;
    bottom: -5em;
    transform: rotate(20deg);
  }
  @media (max-width: 640px) { 
    main {
      max-height: 62vh;
      height: 62vh;
      justify-content: center;
      padding-top: 2rem;
    }
    img {
      max-width: 150px;
    }
    h1 {
      font-size: 28px;
    }
    h2 {
      font-size: 19px;
      font-weight: normal;
    }
    p {
      font-size: 20px;
    }
    #warning-1 {
      top: -55px;
    }
  }
  </style>
  <body>
    <main>
      <img id="warning-1" src="./warning.png" alt="warning"/>
      <h1>Prohibited Entry!</h1>
      <p>Our website is not licensed to operate in the territory you are currently located in,<br/> therefore all browsing, login and usage are blocked.</p>
      <p>You are solely responsible for all legal consequences and liabilities shall you<br/> forcefully browse, login or use.</p>
      <img id="warning-2" src="./warning.png" alt="warning"/>
    </main>
  </body>
</html>
