* {
    user-select: none;
    -webkit-user-drag: none;
}

body {
    background-image: url("bg.png");
    background-size: cover;
}

#container {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

#space {
    position: relative;
    height: 500px;
    width: 500px;
    top: 0;
    transform: scaleY(5%);
    transform-origin: top left;
}

#space > img {
    position: absolute;
    width: 500px;
    height: 500px;
}

#story {
    padding: 5px;
    font-size: 13.5px;
    position: absolute;
    height: 415px;
    width: 390px;
    margin: 50px;
    white-space: pre-line;
    background-color: white;
}

#handle {
    position: absolute;
    top: 500px;
    width: 500px;
    cursor: grab;
    transform-origin: top left;
    transform: scaleY(2000%);
}

#handle > img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 65px;
}

#handle:active {
    cursor: grabbing;
}

a {
    color: red;
    text-decoration: none;
}