@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
    }

    .container {
      display: flex;
      height: 100%;
      width: 100%;
      flex-wrap: wrap;
    }

    .image {
      position: relative;
      width: 100%;
      margin-bottom: 20px;
    }

    .image video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-text {
      width: 80%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #000000;
      background-color: rgba(255, 255, 255, 0.5);
      padding: 21px;
    }

    .image-text h2 {
      font-size: 24px;
    }

    .image-text p {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .image-text button {
      background-color: #ffffff;
      color: #000000;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
    }

    .navbar {
      background-color: #ffffff;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
    }

    .logo {
      height: 60px;
    }

    .logo img {
      height: 100%;
    }

    /* Media queries */
    @media (min-width: 577px) and (max-width: 768px) {
      body, html {
        overflow: auto;
      }
      .image-text p {
        font-size: 12px;
        margin-bottom: 10px;
      }
        .image-text h2 {
        font-size: 19px;
      }
      .image {
        width: 100%;
        margin-bottom: 0;
      }
      .box {
        width: 50% !important;
      }
      .container {
        height: 0;
      }
    }

    @media (max-width: 576px) {
      body, html {
        overflow: auto;
      }
      .image-text p {
      font-size: 12px;
      margin-bottom: 10px;
    }
      .image-text h2 {
        font-size: 19px;
      }

      .image {
        width: 100% !important;
        margin-bottom: 0;
      }
    }

    @media (min-width: 577px) and (max-width: 768px) {
      body, html {
        overflow: auto;
      }
      .image-text p {
      font-size: 12px;
      margin-bottom: 10px;
    }
      .image-text h2 {
        font-size: 19px;
      }

      .image {
        width: 100% !important;
        margin-bottom: 0;
      }
    }

    @media (min-width: 769px) {
      .image {
        width: 50%;
      }
    }

    .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #007bff; /* Azul de Bootstrap */
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #0056b3; /* Azul oscuro al pasar el cursor */
    }