@font-face {
    font-family: mrseaves;
    src: url('/fonts/MrsEavesSmallCaps.woff');
}

@font-face {
    font-family: bayside;
    src: url('/fonts/BaysideTavernPlain-Regular.woff');
}

html {
    border: 0;
    padding: 0;
}

body {
    border: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    font-family: bayside;
}

h1, h2, h3, h4, h5, h6, .logo span, .menu-item span {
    font-family: mrseaves !important;
}

h1 {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 64 / 9;
    min-height: fit-content !important;
    padding: 16px;
    font-size: 64px;
    color: white;
    z-index: 0;
    margin-bottom: 16px;
}

    h1:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/background.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 16px;
        z-index: -1;
        opacity: 0.5;
    }

div, img {
    touch-action: manipulation;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(32px) grayscale(100%);
    -webkit-filter: blur(32px) grayscale(100%);
    opacity: 0.4;
}

.toggle-menu {
    display: none;
}

.side-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 384px;
    height: 100%;
    background-image: url('/images/speckles.png');
    background-size: contain;
    background-repeat: repeat;
    background-color: rgba(64, 255, 64, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

    .side-bar .logo {
        display: block;
        width: 100%;
        height: fit-content;
    }

        .side-bar .logo img {
            display: inline-block;
            vertical-align: middle;
            margin: 8px 8px 0 16px;
            width: auto;
            height: 40px;
        }

        .side-bar .logo span {
            display: inline-block;
            vertical-align: middle;
            margin: 8px 8px 0 0;
            font-size: 40px;
            font-family: Ansichtkaart;
            line-height: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

    .side-bar .menu-item {
        display: block;
        margin: 8px;
        padding: 8px;
        width: calc(100% - 16px);
        height: fit-content;
        text-align: left;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 8px;
    }

        .side-bar .menu-item[focussed='true'] {
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        .side-bar .menu-item img {
            height: 24px;
            margin: -4px 0 0 4px;
        }

        .side-bar .menu-item span {
            color: rgba(255, 255, 255, 0.9);
            margin-left: 8px;
            font-size: 18px;
        }

.main-area {
    position: fixed;
    top: 0;
    left: 384px;
    padding: 32px;
    width: calc(100% - 384px);
    height: 100%;
    background: rgba(0, 255, 0, 0.05);
    overflow: scroll;
    color: white;
}

    .main-area hr {
        padding: 0;
        margin: 16px;
        width: calc(100% - 32px);
        border-bottom: 1px solid white;
    }

.focusable[focussed='false'] {
    border: 1px solid transparent;
    box-shadow: none;
}

.focusable[focussed='true'] {
    border: 1px solid rgba(128, 196, 255, 0.9);
    box-shadow: rgba(155, 155, 144, 0.8) 0px 0px 10px;
}

.copyright, .cookies {
    width: 100%;
    padding: 16px;
    text-align: center;
    color: white;
}

.copyright a {
    color: white;
}

.copyright img {
    height: 150px;
    width: auto;
}

.cookies {
    font-size: 10px;
}

table {
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    margin-bottom: 1em;
}

.downloads {
    width: 100%;
    max-width: 100%;
}

tr:first-child {
    border-bottom: 1px solid white;
}

.downloads tr:first-child {
    border-bottom: none;
}

.downloads tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

th, td {
    padding: 0.25em;
}

.downloads td {
    padding: 16px;
}

.downloads a {
    color: white;
}

th {
    text-align: center;
    font-weight: bold;
    font-family: mrseaves !important;
}

td {
    text-align: center;
    font-weight: normal;
    font-family: bayside !important;
}

    td ul {
        list-style-type: none;
    }

    .row .col-12 table {
    }

    .downloads img {
        height: 50px !important;
        width: auto !important;
    }

.account {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid white;
    padding: 32px;
    border-radius: 32px;
}

    .login-header img {
        height: 300px;
        width: auto;
    }