:root{
	--main-color: #5B93CA;
	--darker-color: #4A7DB0;
	--even-darker: #274B6E;
	--lighter-color: #CADFF4;
	--bg-color: #111214;
	--window-bg-color: #E8E8E8;
	--font-color: #000000;
	--link-color: #FFFFFF;
	--title-color: #FFFFFF;
	--active-area: rgba(255, 255, 255, 0.1);
}
body{
	background-color: var(--bg-color);
	background-image: url(../img/bg.png);
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	color: var(--font-color);
	font-family: Verdana, sans-serif;
	font-size: 18px;
	margin: 0;
}
footer{
	text-align: center;
	line-height: 2em;
	color: var(--title-color);
	font-size: 16px;
}
a{
	color: var(--link-color);
}
a:hover{
	text-decoration: none;
}
ul{
	padding: 0;
	list-style-type: none;
	font-size: 16px;
}
h1{
	margin: 0.25em 0 0.25em 0;
}
p{
	margin: 0;
}
.window-button{
	border-top: solid 2px #FFFFFF;
	border-left: solid 2px #FFFFFF;
	border-bottom: solid 2px var(--darker-color);
	border-right: solid 2px var(--darker-color);
	height: 12px;
	width: 12px;
	text-align: center;
	line-height: 8px;
	padding: 2px;
	margin: 0 1px 0 1px;
}
.window-button:hover{
	background: var(--darker-color);
}
.x-button{
	margin-right: 0;
}
.buttons-section{
	display: flex;
	flex-direction: row;
	justify-content: right;
}
.window-frame{
	border: solid 1px var(--even-darker);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.65);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.65);
}
.window{
	height: calc(100% - 8px);
	width: calc(100% - 8px);
	border: solid 4px var(--main-color);
	background: var(--window-bg-color);
}
.title-section{
	display: flex;
	flex-direction: row;
	justify-content: left;
}
.title-bar{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 4px;
	height: 20px;
	color: var(--title-color);
	background: var(--main-color);
}
.icon{
	width: 20px;
	height: 20px;
}
h3{
	font-size: 14px;
	font-weight: normal;
	margin: 0 0 0 4px;
	line-height: 18px;
}
.no-select{
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}