@font-face {
    font-family: "Manrope";
    src: url('../Fonts/Manrope-Regular.woff2') format('woff2'),
    url('../Fonts/Manrope-SemiBold.woff2') format('woff2');
}

html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: Manrope, sans-serif;
}
.dark {
    background: linear-gradient(180deg, rgb(89.25, 89.25, 89.25) 0%, rgb(0, 0, 0) 100%);
}
.light {
    background: #ffffff;
}
.intro {
    font-size: 1.5rem;
    line-height: 1.8;
}
.txt, caption {
    font-size: 17px;
    line-height: 1.6;
    color: #ccc;
}
caption {
    font-size: 14px;
    caption-side: bottom;
}
.light .txt {
    color: #000;
    text-align: left;

}
.dark a {
    text-decoration: underline;
    color: #ccc;
}
.light a {
    text-decoration: underline;
    color: #000;
}
.table {
    text-align: left;
}
.table>:not(caption)>*>* {
    background-color: unset;
    padding: 0.8rem 0.8rem;
}
.table td:last-child,
.table th:last-child{
    background-color: #282828;
}
.table th:last-child {
    border-bottom-width: 1px;
    border-color: currentColor;
}



@media (max-width: 576px) {
    :root {
        font-size: 12px;
    }
    .table {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .twocol .frame{
        column-count: 2;
        column-gap: 4rem;
    }
}
