/* Fonts */
@font-face {
	font-family: "ProFontWindows";
	src: url('/fonts/ProFontWindows.ttf') format("truetype");

	font-family: "Galmuri9";
	src: url('/fonts/Galmuri9.ttf') format("truetype");
}

/* Overall */
body {
	background-color: #000;
	background-image: url("/graphics/bgtiles/bg205.gif");
	background-repeat: repeat;
	color: #FFF;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	
	font-family: "Galmuri9", Monospace;
}

/* Title Bar */
div#title_frame {
	max-width: 50%;
	min-width: 50%;
	text-align: center;
}

/* Various content divs and containers */
div#main_frame {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	max-width: 1000px;
}

div#content_area {
	text-align: justify;
	flex-basis: 50%;
	overflow: scroll;
}

div#sidebar_left {
	flex-basis: 8%;
	overflow: hidden;
	text-align: center;
}

div#sidebar_right {
	flex-basis: 20%;
	overflow: hidden;
	text-align: center;
	font-size: 80%;
}


div.warning {
    border-style: solid;
    border-width: 2px;
    border-color: #FF0000;
    padding: 5px;
}

div.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

/* Elements */
p, a, ul, li {
	padding: 0;
}

ul {
	list-style-position: inside;
}

h1 {
	font-size: 110%;
	text-decoration-line: underline;
	
}

img {
    max-width: 98%;	
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated;                 /* Universal support since 2021   */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
}

/* Responsive Format */
@media screen and (max-width: 760px) {
  div#sidebar_left, div#content_area, div#sidebar_right {   
    flex-direction: column;
		flex-grow: 1;
  }
	div#title_frame {
		max-width: 100%;
	}
	div#content_area {
		flex-basis: 90%;
	}
}


/* Classes */
img.logo {
	width:90%;
    height:90%;
    object-fit: cover;
    overflow: hidden;
}

img.divider {
	width:100%;
    height:100%;
    object-fit: cover;
    overflow: hidden;
    text-align: center;
}

img.centerpiece {
	max-width: 200px;
	max-height: 200px;
}

p.centerpiece {
    text-align: center;
    max-width: 100%;
}

div.windowed_purple {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #120825;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_pink {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #e400dc;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_magenta {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #ff1a71;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_red {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #d80000;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_orange {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #ff671d;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_green {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #00e487;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_blue {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #090443;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_lblue {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #00c5e4;
	padding: 1%;
	margin: 1%;
	background: black;
}

div.windowed_yellow {
	border-style: solid;
	border-width: 25px 2px 2px 2px;
	border-color: #e4ce00;
	padding: 1%;
	margin: 1%;
	background: black;
}

ul.list_no_icon {
 	list-style-type: none;
 	list-style-image: none;
	padding: 0;
}

.red {
	color: #d80000;
}

.orange {
	color: #ff671d;
}

.magenta {
	color: #ff1a71;
}

.green {
	color: #00e487;
}

.yellow {
	color: #e4ce00;
}

.pink {
	color: #e400dc;
}

.lblue {
	color: #00c5e4;
}
