
    @import url('inline-font1_1.1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    body {
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
        background-image: linear-gradient(to top, rgb(43 105 183, 1) 0%, rgb(31 76 132 / 65%) 50%);
        color: #333;
        background-color: #020916;
    }
    header {
        text-align: center;
        padding: 15px;
        background: #0f1622;
    }
    header img {
    height: auto;
    }
    article {
        max-width: 800px;
        margin: auto;
        padding: 0 15px;
        color: #fff;
    }
    article img{
        max-width: 100%;
        height: auto;
    }
    h1 {
        text-align: center;
        text-transform: uppercase;
        text-shadow: 1px 2px #000;
    }
    footer {
        background: linear-gradient(180deg, rgb(0 0 0 / 18%) 0%, rgba(0, 0, 0, 0) 100%);
        border-top: solid 2px rgb(23, 89, 104);
        text-align: center;
        color: #fff;
        padding: 15px;
        font-size: small;
    }
    .buttons {
    margin: 10%;
    text-align: center;
    }

    .btn-hover {
        width: 300px;
        font-size: 16px;
        font-weight: 600;
        color: #000;
        cursor: pointer;
        margin: 20px 30px 20px;
        height: 55px;
        text-align: center;
        border: none;
        background-size: 300% 100%;
        border-radius: 50px;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-hover:hover {
        background-position: 100% 0;
        moz-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .btn-hover:focus {
        outline: none;
    }

    .btn-hover.color-9 {
        background-image: linear-gradient(to right, #0f98fb, #0f98fb, #0f98fb, #0f98fb);
        box-shadow: 0 4px 15px 0 rgba(15, 152, 251, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 25px auto;
    }
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      background-color: #1e1e1e;
      color: #ffffff;
    }

    th, td {
      padding: 12px;
      border: 1px solid #2e2e2e;
      text-align: left;
    }

    th {
      background-color: #2b2b2b;
      color: #0f98fb;
    }

    td {
      color: #e6e6e6;
    }
    tr:hover {
      background-color: #333333;
    }
    @media (max-width: 600px) {
      .table-responsive {
        overflow-x: auto;
      }
      table {
        width: 100%;
        border: 0;
      }
      table thead {
        display: none;
      }
      table tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 2px solid #2e2e2e;
      }
      table td {
        display: block;
        text-align: right;
        font-size: 13px;
        border-bottom: 1px dotted #2e2e2e;
        position: relative;
        padding-left: 50%;
      }
      table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
        color: #0f98fb;
      }
    }
    blockquote {
        background-color: #111;
        color: #fff;
        padding: 15px;
        border-left: 5px solid #0f98fbbf;
        margin: 20px 0;
        font-style: italic;
    }

    