:root {
    --border: rgba(22, 107, 218, 0.794);
    --navbar_back: rgba(61, 222, 61, 0.626);
    --navbar_bord: rgb(19, 234, 51);
    --popup_back: rgba(0, 174, 255, 0.752);
    --popup_bord: rgb(0, 81, 255);
}

* {
    box-sizing: border-box;
}

body {
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

#layer_dark {
    background-color: rgba(0, 0, 0, 0.613);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 11;
    display: none;
}


#info,
#instruction {
    display: none;
}

#info_button {
    position: fixed;
    z-index: 12;
    bottom: 2%;
    right: 1%;
}

#instruction_button {
    position: fixed;
    z-index: 12;
    bottom: 2%;
    right: 5%;
}

#output {
    position: fixed;
    z-index: 12;
    bottom: 2%;
    right: 13%;
}

.popup {
    position: fixed;
    z-index: 12;
    border: solid var(--popup_bord) 5px;
    width: 50%;
    height: 50%;
    left: 25%;
    top: 25%;
    background-color: var(--popup_back);
    padding: 2%;
}

#close_all {
    border: solid 1px var(--popup_bord);
    position: fixed;
    right: 17%;
    top: 25%;
    z-index: 12;
    display: none;
}


#navbar {
    height: 100%;
    width: 20%;
    background-color: var(--navbar_back);
    border: solid 3px var(--navbar_bord);
    position: fixed;
    padding: 1%;
    padding-top: 3%;
    display: none;
    border-top-right-radius: 10%;
    /* border-bottom-right-radius: 10%; */
    filter: drop-shadow(5px);
    /* border-radius: 4%; */
}

#nav_button {
    position: fixed;
    top: 1%;
    left: 1%;
    z-index: 10;
}

.container {
    width: 100%;
    height: 100%;
    border: solid black 3px;
    /* margin-left: 25%; */
    /* border: dashed green 10px; */
}

input {
    position: absolute;
    margin-top: 10%;
    right: 10%;
}


.box {
    width: 75%;
    height: 60%;
    margin-left: 12.5%;
    margin-top: 10%;
    /* height: 100vh; */
    border: solid 5px var(--border);
    /* padding: 25%; */
}