.webgl-content {
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%; 
    left: 50%; 
    -webkit-transform: translate(-50%, -50%); 
    transform: translate(-50%, -50%);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    background: #F7D839; 
    box-shadow: 0 0 8px #F7D839, 0 0 16px #7C6C1C;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(253, 229, 110); 
}
::-webkit-scrollbar-corner {
    background: transparent
}
.fullscreen {
    background-image: url("Fullscreen.png");
    opacity: 0;
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 48px;
    height: 32px;
    z-index: 3;
	filter: sepia(100%) saturate(10000%) brightness(70%) hue-rotate(-45deg);
}
.fullscreen:hover {
    opacity: 0.5;
}
.background {
    position: relative;
    background: #020000;
    padding: 0px;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}
.console {
    color: #F7D839;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 12px;
	font-weight: bold;
    text-shadow: 0 0 8px #F7D839, 0 0 16px #7C6C1C;
    margin: 8px;
    user-select: none;
    overflow-wrap: break-word;
}
.overlay {
    position: absolute;
    mix-blend-mode: overlay;
    width: 100%;
    height: 100%;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    background-image: url("crt.png");
    background-repeat: repeat repeat;
    background-size: auto auto;
}