body {
	margin: 0;
	padding: 0;
	background-color: #d6dce5;
    overflow: hidden;
    transition: background-color 4s ease-out;
}

header,
footer {
  height: 10vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  position: fixed;
}

header {
	top: 0;
	left: 0;
	z-index: 31;
}

footer {
	bottom: 0;
	left: 0;
	z-index: 31;
}

main {
    background: linear-gradient(0deg, rgb(255,255,255) 0%, rgba(255,255,255,0.3) 25%, transparent 55%, transparent 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

header .gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12,34,41,1) 0%, rgba(12,34,41,0.2) 30%, rgba(12,34,41,0) 50%, rgba(12,34,41,0) 90%, rgba(12,34,41,0.7) 100%); 
}

footer .gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(12,34,41,1) 0%, rgba(12,34,41,0.2) 30%, rgba(12,34,41,0) 50%, rgba(12,34,41,0) 90%, rgba(12,34,41,0.7) 100%); 
}

main #playground {
    background: #09131c url(../img/scenery/room.png) 0 0 no-repeat;
    width: 1200px;
    height: 800px;
    padding-bottom: 50px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
main #playground * {
    box-sizing: border-box;
}

#playground .playground-shadow {
    background: url(../img/scenery/room-shadows.png) 0 0 no-repeat;
    position: absolute;
    right: 91px;
    top: 69px;
    width: 471px;
    height: 659px;
    z-index: 1;
}

.ui-blocker {
    background-color: rgba(30, 30, 54, 0.8);
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 30;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.ui-blocker .inner {
    background-color: rgba(30, 30, 54, 0.9);
    position: fixed;
    top: 50vh;
    height: 220px;
    margin-top: -110px;
    width: 100vw;
    z-index: 31;

    font-size: 2.3em;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);

}
.ui-blocker .inner p.extra{
    margin-top: 1.5em;
}
.ui-blocker .inner p.smaller{
    font-size: 0.6em;
    margin: 0;
    padding: 0;
}
.ui-blocker.fade-in {
    opacity: 1;
}

.ui-blocker.fade-out {
    opacity: 0;
}

.ui-blocker.hidden {
    display: none;
}

#debug {
    width: 50%;
    left: 25%;
    top: 5%;
    height: 95%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 12px;
    font-family: monospace;
    position: absolute;
}

#debug.hidden {
    display: none;
}
