* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body {
    background-color: black;
    font-family: sans-serif;
    overflow: hidden;
    font-size: 13px;
    color: rgb(230,230,230);
}

#content {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 75%;
    min-width: calc(100% - 400px);
    max-width: calc(100% - 320px);
    overflow: hidden;
}

.box {
    background-color: black;
    width: 100%;
    overflow: hidden;
}
.box25 {
    height: 25%;
}
.box33 {
    height: 33.3%;
}
.box50 {
    height: 50%;
}
.box100 {
    height: 100%;
}

.centric {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	height: 30px;
	text-align: center;
}

#aside {
    background-color: rgb(19,23,34);
    border-left: 1px solid rgb(90,90,90);
    color: rgb(230,230,230);
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 25%;
    min-width: 320px;
    max-width: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 5px 4px;
}
#aside h1 {
    font-size: 16px;
    margin-bottom: 4px;
}
#aside h2 {
    font-size: 15px;
    margin-bottom: 3px;
}
#aside p {
    font-size: 13px;
}
#aside ul, ol {
    margin: 5px 0px 10px 0px;
}
#aside ul li {
    font-size: 13px;
    margin-left: 12px;
    padding: 2px 0px;
    list-style-type: circle;
}
#aside ol li {
    font-size: 13px;
    margin-left: 12px;
    padding: 2px 0px;
}
#aside img {
    width: 100%;
    filter: invert(100%) hue-rotate(180deg);
    mix-blend-mode: screen;
}

a, a:link, a:visited, a:hover, a:active {
    color: rgb(160,160,160);
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 8px;
}
a.active {
    color: rgb(220,220,220);
}

img.img-lightbox-show:hover {
    cursor: pointer;
}

#lightbox {
    display: none;
	background: -moz-radial-gradient(center, ellipse cover,  rgba(100,100,100,0.6) 0%, rgba(0,0,0,0.6) 100%);
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(100,100,100,0.6) 0%,rgba(0,0,0,0.6) 100%);
	background: radial-gradient(ellipse at center,  rgba(100,100,100,0.6) 0%,rgba(0,0,0,0.6) 100%);
    position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 5000;
}
#lightbox_content_container {
	border: 1px solid rgb(80,80,80);
	background-color: rgb(19,23,34);
	position: relative;
	top: 20px;
	width: calc(100% - 50px);
	margin: 0px auto;
	padding: 20px 25px;
}
#lightbox_content_container img {
    width: 100%;
    filter: invert(100%) hue-rotate(180deg);
    mix-blend-mode: screen;
}
#lightbox_content_container #lightbox_close {
	color: rgb(160,160,160);
	position: absolute;
	top: 3px;
	right: 3px;
	font-size: 24px;
    font-weight: 100;
	padding: 4px 6px;
}
#lightbox_content_container #lightbox_close:hover {
	cursor: pointer;
}

/* mobile */
@media only screen and (max-width: 800px){
    html {
        font-size: 62.5%;
    }
    #content {
        display: none;
    }
    #aside {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
    }
    .desktoponly {
        display: none !important;
    }
    .mobileonly {

    }
}

/* desktop */
@media only screen and (min-width: 800px){
    .desktoponly {

    }
    .mobileonly {
        display: none !important;
    }
}
