body {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
b,
th,
td,
div,
sub {
    font-family: 'Roboto Condensed', sans-serif !important;
}

/*************************

         Bulma

*************************/
.modal-card, .modal-content {
    width: 98% !important;
}

/*************************

    Menu

*************************/
.menu-list a:hover,
.menu-list button:hover,
.menu-list .menu-item:hover {
    --bulma-menu-item-h: var(--bulma-menu-item-selected-h);
    --bulma-menu-item-s: var(--bulma-menu-item-selected-s);
    --bulma-menu-item-l: var(--bulma-menu-item-selected-l);
    --bulma-menu-item-background-l: var(--bulma-menu-item-selected-background-l);
    --bulma-menu-item-color-l: var(--bulma-menu-item-selected-color-l);
}


/*************************

    Light And Dark Theme

*************************/
@media (prefers-color-scheme: dark) {
    :root {
        /* CSS Variables */
    }

    .color-dark-theme,
    .color-dark-theme strong,
    .color-dark-theme td {
        color: #2e333d !important;
    }

}

@media (prefers-color-scheme: light) {
    :root {
        /* CSS Variables */
    }
}

