* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
} 

::-webkit-scrollbar {
    display: none;
}

html::-webkit-scrollbar{  
}

html {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -moz-scrollbars-none;
}

body {
    overflow-x: hidden;
    background-color: #071b1f;
    /*
    background: linear-gradient(140deg,rgba(3, 19, 20, 1) -20%, rgb(7, 27, 31) 50%);
    */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -moz-scrollbars-none;
}

.content {
    height: 100dvh;
    width: 100vw;
    position: fixed;
    overflow: scroll;
}

#bg_art {
    position: fixed;
    height: 100dvh;
    bottom: -20vh;
    right: -20vh;
    z-index: -100;
    transition-duration: 0.1s;
    opacity: 0.2;
}


@media all and (max-width: 600px) {
    #bg_art {
        position: fixed;
        height: 80vh;
        bottom: -17vh;
        right: -17vh;
        z-index: -100;
    }
}

#load_overlay {
    position: fixed;
    background-color: #071b1f;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100vw;
    will-change: opacity, transform;
    transform: translateZ(0);
}

#load_overlay[loaded='true'] {
    animation: load_overlay_hide forwards ease-out 0.3s;
}

#load_overlay[show='true'] {
    animation: load_overlay_show backwards ease-out 0.15s;
}


@keyframes load_overlay_show {
    0% {
        display: block;
        visibility: visible;
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes load_overlay_hide {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    99% {
        opacity: 0;
        display: block;
        visibility: visible;
    }

    100% {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}

.load_overlay_bg_art {
    position: fixed;
    height: 100dvh;
    bottom: -20vh;
    right: -20vh;
    z-index: -100;
    transition-duration: 0.1s;
    opacity: 0.2;
}

#error_message {
    height: 100dvh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    font-weight: 500;
    flex-direction: column;
    z-index: 110;
}

#error_message[show='true'] {
    animation: error_show forwards ease-out 0.15s;
}

#error_message_text {
    font-size: 14px;
    font-weight: 400;
}

#error_button {
    height: 32px;
    border-radius: 32px;
    cursor: pointer;
    background: linear-gradient( 0deg, rgba(220, 252, 255, 1) 0%, rgba(220, 252, 255, 1) 50%, rgba(220, 252, 255, 0.6) 75%, rgba(220, 252, 255, 0.6) 100% );
    background-position-y: 0%;
    background-size: auto;
    background-size: 100% 400%;
    background-position-y: 20%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 252, 255, 0.7);
    transition-delay: 0.1s;
    transition-duration: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #071b1f;
    font-weight: 500;
    padding: 0 10px;
    text-decoration: none;
    margin-top: 10px;
}

@keyframes error_show {
    0% {
        display: none;
        visibility: hidden;
        opacity: 0;
    } 1% {
        opacity: 0;
        display: flex;
        visibility: visible;
    } 100% {
        opacity: 1;
        display: flex;
        visibility: visible;
    }
}

@media all and (max-width: 600px) {
    .load_overlay_bg_art {
        position: fixed;
        height: 80vh;
        bottom: -17vh;
        right: -17vh;
        z-index: -100;
    }
}

.menu_spacer {
    width: 100vw;
    height: 70px;
}

#menu {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    background: linear-gradient(180deg,rgba(7, 27, 31, 1) 0%, rgba(7, 27, 31, 0) 100%);
}

#menu[load_anim='true'] {
    animation: menu_load forwards ease-out 0.3s;
}

#menu[hide='true'] {
    animation: menu_hide forwards ease-in 0.15s;
}

.menu_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@keyframes menu_load {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes menu_hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#menu_logo {
    height: 35px;
    margin-right: auto;
    margin-left: 22px;
    transition-duration: 0.2s;
}

#menu_logo img {
    height: 35px;
    transition-duration: 0.2s;
}

.menu_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 22px;
}

.menu_button {
    color: #071b1f;
    text-decoration: none;
    border-radius: 30px;
    align-self: flex-end;
    cursor: pointer;
    height: 32px;

    background: linear-gradient(
        0deg,
        rgba(0, 188, 183, 1) 0%,
        rgba(0, 188, 183, 1) 50%,
        rgba(0, 188, 183, 0.6) 75%,
        rgba(0, 188, 183, 0.6) 100%
    );

    background-size: 100% 400%;
    background-position-y: 1%;

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 188, 183, 0.7);

    transition-duration: 0.15s;

    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 12px;

    margin-right: 10px;
    position: relative;
    padding-left: 32px;
}

.menu_button:hover {
    background-position-y: 50%;
}

.menu_button:active {
    background-position-y: 50%;
}

.menu_button[active='true'] {
    background-position-y: 50%;
}

.menu_button img {
    height: 32px;
    width: 32px;
    top: 0;
    left: 0;
    position: absolute;
}

.menu_button_label {
    transition-duration: 0.2s;
    font-weight: 500;
}

@media all and (max-width: 700px) {

    .menu_button_label {
        font-size: 0;
    }

    .menu_button {
        padding-left: 30px;
        padding-right: 0;
    }

    .menu_button img {
        top: -1px;
        left: -1px;
    }
}

@media all and (max-width: 400px) {

    #menu_logo,
    #menu_logo img {
        height: 30px;
    }
}

/* FLASH */

.flash {
    position: fixed;
    bottom: 14px;
    background: rgba(0, 188, 183, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 188, 183, 0.9);
    max-width: 75%;
    width: auto;
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    z-index: 100;
    cursor: pointer;
}

.flash_message {
    color: #071b1f;
    font-weight: 500;
    text-align: center;
    transition-duration: 0.2s;

    margin-right: 0px;
    margin-left: 20px;
    padding: 0 6px;
}

.flash_close {
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    transition-duration: 0.2s;

    margin-right: 20px;
}

.flash img {
    height: 0px;
    width: 0px;
    transition-duration: 0.2s;
    opacity: 0;
}

.flash[hovered='true'] .flash_message {
    margin-right: 0px;
    margin-left: 4px;
}

.flash[hovered='true'] .flash_close {
    margin-right: 10px;
}

.flash[hovered='true'] img {
    height: 26px;
    width: 26px;
    opacity: 1;
}

@keyframes flash_anim {
    0% {
        transform: translateY(80px) scale(0.5);
        opacity: 0;
    } 100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}