html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: playtime;
    font-size: 22px;
    overflow: hidden;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}

@font-face {
    font-family: "playtime";
    src: url("font/playtime.ttf") format("truetype");
}

@font-face {
    font-family: "playtime_bold";
    src: url("font/playtime_bold.ttf") format("truetype");
}

#dialog-box {
    bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;

    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 1000px;
    height: 190px;

    /* display: none; */
    cursor: default;
    z-index: 10;
}

#heading-div {
    font-family: playtime_bold;
    font-size: x-large;
    height: 30px;
    padding-top: 12px;
    padding-left: 2%;
}

#text-div {
    position: inherit;
    padding-top: 20px;
    padding-left: 3%;
    padding-right: 3%;
}

.vfx {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    z-index: 5;

    transition: linear background-image 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;

    display: none;
}

#bg {
    position: absolute;
    /* max-width: 1000px; */
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: black;

    transition: linear background-image 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.sprite {
    position: absolute;

    bottom: 0;
    width: 550px;
    height: 760px;
    max-height: 100%;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    transition: linear background-image 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;

    display: none;
}

.pos-center {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.pos-left {
    left: -60%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.pos-twoleft {
    left: -35%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.pos-tworight {
    left: 0;
    right: -35%;
    margin-left: auto;
    margin-right: auto;
}

.pos-right {
    left: 0;
    right: -60%;
    margin-left: auto;
    margin-right: auto;
}

#choices-div {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-bottom: 100px;
    z-index: 10;
}

.choice-div {
    color: rgb(162, 153, 133);
    font-size: inherit;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 40px;
    line-height: 40px;
    cursor: default;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.choice-div:hover {
    color: rgb(25, 23, 21);
}

#cache {
    display: none;
}

.heartattack{
    opacity: 30%;
}