body {
    margin: 0;
    height: 100%;
    width: 100%;
    padding-bottom: 100px;
    position: relative;
    background-color: black;
    cursor: pointer;
}

.pulse {
    animation: pulse 2s infinite, fadein 2s ease;
}

@keyframes fadein {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes pulse {
    0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1)); }
    100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
}


#box {
    opacity: 0.5;
    position: absolute;
    width: 700px;
    height: 8300px;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
}

#box > div {
    background-color: white;
}

#boxface {
    position: absolute;
    width: 600px;
    height: 95%;
    left: 100px;
    transform: translateY(50px);
}

#boxleft {
    position: absolute;
    width: 100px;
    left: -10px;
    height: 95%;
    transform: skew(0deg, 45deg);
}
#boxtop {
    top: -60px;
    left: 45px;
    position: absolute;
    height: 100px;
    width: 600px;
    transform: skew(45deg, 0deg);
}

#story {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 50px;
    font-size: 36pt;
    white-space: pre-line;
}

#tag {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 3000px;
    font-size: 72pt;
}

#show {
    box-shadow: 0px -20px 20px white;
    background-color: white;
    opacity: 1;
    position: absolute;
    top: 50px;
    left: 0;
    width: 600px;
    height: 7830px;
}

a {
    color: #555555;
    text-decoration: none;
}