/* Reset Values */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: none !important;
}
html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    overflow: clip;
    overscroll-behavior: none;
    -webkit-user-select: none !important; /* Safari */
    -ms-user-select: none !important; /* IE 10+ */
    user-select: none !important;
}

body {
    background-color: black;
}

a {
    color: white;
}

#storage {
    display: none;
}

#plot,
#plot-canvas,
#plot-game-input,
#plot-overlay,
#plot-loading {
    width: 100%;
    height: calc(100% - 90px);
    position: fixed;
}

#plot-overlay span {
    box-sizing: border-box;
    display: block;
    border-style: solid;
    border-image: url("../images/frame-1.png") 80;
    border-image-width: 30px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#plot-loading {
    background-color: #0a0032;
    display: flex;
    justify-content: center;
    align-items: center;
}

#plot-loading span {
    font-size: 32px;
    font-weight: bold;
    color: white;
}

#plot-console {
    position: absolute;
    width: 80%;
    height: 100px;
    bottom: 20px;
    padding: 0px 30px;
    color: #ffffff;
    font-size: 20px;
    font-family: sans-serif;
    font-variant: small-caps;
    overflow: hidden;
    pointer-events: none;
    filter: drop-shadow(0px 0px 10px #000000);
}

#plot-textbox {
    display: none;
}

#plot-textbox-auto {
    z-index: 70;
    width: 500px;
    position: fixed;
    top: 15%;
    left: 50%;
    margin-left: -250px;
    padding: 20px 20px 30px 20px;
    background-color: #ffeb00;
    color: black;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
    pointer-events: none;
}

#plot-textbox div,
#plot-textbox-auto div {
    font-size: 18px;
}

#plot-textbox div b,
#plot-textbox-auto div b {
    font-size: 28px;
}

#plot-textbox a {
    right: 10px;
    bottom: 10px;
    position: absolute;
    font-size: 34px;
    color: white;
}

#plot-start {
    z-index: 101;
    padding: 40px;
    padding-top: 120px;
    background-color: rgba(3, 15, 35, 0.5);
}

#plot-start-wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#plot-start h1 {
    padding-bottom: 60px;
    font-size: 34px;
}

#plot-start h1 img {
    width: 60%;
}

#plot-start h2 {
    padding-bottom: 5px;
    font-size: 28px;
    padding-bottom: 0;
}

#plot-start .start-char {
    width: 15%;
}

#menu {
    width: 100%;
    height: 90px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 20px;
    font-family: "basiic";
}

.floater {
    position: absolute;
    text-align: center;
    float: left;
    color: yellow;
    top: 0;
}

.floater img {
    display: block;
    width: 50px;
    margin-bottom: 7px;
}

#m-charicter img {
    width: auto;
    max-width: 90px;
    height: auto;
    max-height: 100px;
}

#m-triangle img {
    width: 95px;
}

/* Placer paste start */
#m-triangle {
    top: -33px;
    left: 51px;
}
#m-charicter {
    top: -40px;
    left: 65px;
}
#m-charicter-text {
    top: 65px;
    left: 32px;
}
#m-heart {
    top: 9px;
    left: 324px;
}
#m-speak {
    top: 10px;
    left: 217px;
}
#m-menu {
    top: 6px;
    right: 19px;
}
/* Placer Paste end */
