        body {
            color: white;
            font-family: Arial, sans-serif;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th, td {
            border: 1px solid #fff;
            padding: 6px;
            color: #fff;
            background-color: black;
        }
        th {
            background-color: #e3be16;
            text-align: left;
        }
        /* Reset default margin and padding */
body, html {

/* General heading styling */
h1, h2, h3, h4, h5 {
    margin: 8px 0;
    color: #ffffff;
}

/* Responsive heading sizes */
h1 {
    font-size: 35px; /* Responsive font size based on viewport width */
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    h1 {
        font-size: 37px; /* Adjust font size for tablets */
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 29px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 37px; /* Adjust font size for smaller screens */
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 29px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 37px; /* Adjust font size for very small screens */
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 29px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 22px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *:after, *:before {
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    font-size: 1.25rem;
}

*:focus {
    outline: none;
}

body > div {
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

details div {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 1.5em;
}

details div > * + * {
    margin-top: 1.5em;
}

details + details {
    margin-top: .5rem;
}

summary {
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    border: 2px solid #000;
    padding: .75em 1em;
    cursor: pointer;
    position: relative;
    padding-left: calc(1.75rem + .75rem + .75rem);
}

summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .75rem;
    content: "↓";
    width: 1.75rem;
    height: 1.75rem;
    background-color: #000;
    color: #FFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

details[open] summary {
    background-color: #000;
}

details[open] summary:before {
    content: "↑";
}

summary:hover {
    background-color: #000;
}

a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 0 0;
}

a:hover {
    box-shadow: 0 3px 0 0;
}

code {
    font-family: monospace;
    font-weight: 600;
}