* {
    scrollbar-width: thin;
    scrollbar-color: #34343428 #34343428;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #222;
    overflow-x: hidden;
    background: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #090909;
}


.container-top {
    display: flex;
    width: 100%;
    margin-bottom: 0.1%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 100px;
    padding-top: 10px;
    padding-left: 10px;
    justify-content: space-between;
}

.container-center {
    display: flex;
    width: 100%;
    margin-bottom: 0.1%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 95%;
    justify-content: center;
    gap: 10px;
}

.container-bottom {
    margin-top: auto;
    justify-content: center;
    display: flex;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 5%;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: none;
    z-index: 900;

    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex;
}

@font-face {
font-family: 'Peace';
src: url('files/fonts/peace/peace-sans.woff') format('woff'),
url('files/fonts/peace/peace-sans.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Futura';
src: url('files/fonts/futura/futura.woff') format('woff'),
url('files/fonts/futura/futura.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'B52';
src: url('files/fonts/b52/B52.woff') format('woff'),
url('files/fonts/b52/B52.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}

@media (max-width: 964px) {
    .container-top {
        justify-content: center;
    }

    .container-center {
        min-height: 94%;
        height: auto;
        flex-direction: column;
    }

    .container-bottom {

    }
}