@font-face {
    font-family: 'Josefin Sans';
    src: url('../Font/JosefinSans.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url('../Font/Inter.ttf') format('truetype');
}

:root{
    --josefin-sans: 'Josefin Sans', sans-serif;
    --inter: 'Inter', sans-serif;
}

.html{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    background-color: #000000;
}

.main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.main_inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.main_inner > .section_main{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;

    z-index: 2;
    pointer-events: none;
}

.main_inner > .section_main > .section_main_window{
    width: 84%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.2s ease;
}

.main_inner > .section_main > .section_main_window > .section_main_window_inner {
    width: 100%;
    height: calc(100% - 6px);
    margin: 0px 3px 0px 0px;
    
    overflow-y: scroll;   /* keeps scrolling enabled */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE + Edge Legacy */

    border-radius: 0.6vw;
    background-color: black;
    background-image: url(../Images/mainBG.jpg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

/* Chrome, Safari, Opera */
.main_inner > .section_main > .section_main_window > .section_main_window_inner::-webkit-scrollbar {
    display: none;
}


.main_inner > .section_sidebar{
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;

    z-index: 3;
    pointer-events: none;
}

.main_inner > .section_sidebar > .section_sidebar_window{
    width: 16%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.2s ease;
}

.main_inner > .section_sidebar > .section_sidebar_window > .section_sidebar_window_inner{
    width: 100%;
    height: calc(100% - 6px);
    margin: 0px 3px 0px 3px;
    overflow: hidden;
}

.section_menu{
    position: fixed;
    top: 0;
    left: 0;

    z-index: 3000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
    pointer-events: none;
}


.section_menu > .menu{
    margin: 5vw;
    width: 5vh;
    aspect-ratio: 1 / 1;
    mask-image: url(../Images/menu.png);
    -webkit-mask-image: url(../Images/menu.png);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: white;
    cursor: pointer;
    pointer-events: all;
    display: none;
}