
    @import url('inline-font1_1.1000&display=swap');

    body {
        font-family: "Nunito", 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: #fff;
        background-color: #000;
        font-size: 16px;
    }
    header {
        text-align: center;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 15px 0 rgba(255, 255, 255, 0.15);
    }
    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: #fff;
        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, #007aff, #007aff, #007aff, #007aff);
        box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 25px auto;
    }
    /* CSS for the table with dark theme */
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 16px;
        text-align: left;
        background-color: #222; /* Background color for the table */
        color: #fff; /* Text color for the table */
    }

    table th, table td {
        padding: 12px 15px;
        border: 1px solid #444; /* Border color for the table */
    }

    table thead {
        background-color: #333; /* Darker background for table headers */
    }

    table tbody tr:nth-child(even) {
        background-color: #2a2a2a; /* Slightly lighter background for even rows */
    }

    table tbody tr:hover {
        background-color: #3a3a3a; /* Highlighted background when hovering over a row */
    }

    /* Responsive CSS for the table */
    @media (max-width: 768px) {
        table {
            border: 0;
        }

        table thead {
            display: none;
        }

        table tr {
            display: block;
            margin-bottom: 15px;
            border-bottom: 2px solid #444; /* Dark border for separating rows */
        }

        table td {
            display: block;
            text-align: right;
            font-size: 14px;
            border: none;
            position: relative;
            padding-left: 50%;
            background-color: #222; /* Same background color as the table */
        }

        table td::before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 15px;
            font-weight: bold;
            text-align: left;
            color: #bbb; /* Lighter text color for labels */
        }
    }
    /* CSS for blockquote with a dark theme */
    blockquote {
        background-color: #333; /* Background color for the blockquote */
        border-left: 5px solid #00bfa5; /* Accent color for the left border */
        color: #eee; /* Text color for better readability */
        margin: 20px 0;
        padding: 15px 20px;
        font-style: italic;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow to make it stand out */
    }

    blockquote p {
        margin: 0;
        line-height: 1.6; /* Improved line spacing for readability */
    }

    blockquote::before {
        content: "“";
        font-size: 30px;
        color: #00bfa5; /* Accent color for the opening quote */
        position: absolute;
        margin-left: -10px;
        margin-top: -10px;
    }

    blockquote::after {
        content: "”";
        font-size: 30px;
        color: #00bfa5; /* Accent color for the closing quote */
        position: absolute;
        margin-left: 5px;
        margin-bottom: -10px;
    }

    