<!DOCTYPE html>
<html>

<head>
  <title>Blocked Traffic</title>
  <style>
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      font-family: Arial, sans-serif;
      background-color: #FFF8E1;
    }

    .container {
      text-align: center;
      padding: 20px;
      max-width: 600px;
    }

    h1 {
      margin-bottom: 20px;
      font-size: 36px;
      color: #D32F2F;
    }

    h2 {
      font-size: 26px;
      color: #D32F2F;
    }

    p {
      font-size: 24px;
      color: #388E3C;
      margin-bottom: 20px;
    }

    p span {
      color: #D32F2F;
      font-weight: bold;
    }

    .logo {
      width: 400px;
      margin-bottom: 10px;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 28px;
      }

      p {
        font-size: 20px;
      }

      .brazil-flag {
        width: 150px;
      }
    }
  </style>
</head>

<body>
  <div class="container">
    <h1>Acesso Bloqueado</h1>
    <p>El sitio <span id="hostname"></span>, ha sido oficialmente bloqueado por el Ministerio de las Tecnologias y de las Comunicaciones MinTIC en Colombia.</p>
    <img class="logo" src="/assets/img/logomintic.png" alt="Anatel">
  </div>

  <script>
    var hostname = document.getElementById('hostname');
    hostname.textContent = window.location.hostname;
  </script>
</body>

</html>