body {
	margin: 0;
	padding: 0;
	display: flex;
	font-family: Tahoma, sans-serif;
	/*background: url("/files/bliss.jpg");*/
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #3A6EA5;
	}

.MainContainer {
	width: 100%;
	overflow: hidden;
	margin-left: 30%;
	margin-right: 30%;
	margin-top: 0px;
	border: 0px solid red;
	padding: 8px;
	padding-top: 0px;
	-webkit-font-smoothing: none;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: none;
}

.WindowTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgb(10,28,118);
	background: linear-gradient(to bottom, #016cfe, #0168f9, #0163f5, #005ff0, #005beb, #005aeb, #0059ea, #0058ea, #005aee, #005cf1, #005ef5, #0060f9);
	color: white;
	padding: 5px 5px;
	border-bottom: 1px solid #0144D0;
	border-left: 1px solid #004ADC;
	border-right: 1px solid #002CC8;
	border-top: 1px solid #3D95FF;
	font-family: Tahoma, monospace;
	font-size: 14px;
	font-weight: 500;
	text-shadow: 1px 1px #0A1883;
	border-radius: 4px 4px 0px 0px
}

.WindowTitle .Buttons {
	display: flex;
	gap: 3px;
	image-rendering: crisp-edges;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	-khtml-user-select: none;
	-khtml-user-drag: none;
	-moz-user-select: none;
	-moz-user-drag: none;
	-o-user-select: none;
	-o-user-drag: none;
	user-select: none;
	user-drag: none;
}

.windowTitleIcon {
	float: left;
	padding: 2px;
	image-rendering: crisp-edges;
	-webkit-user-select: none;
	-webkit-user-drag: none;
	-khtml-user-select: none;
	-khtml-user-drag: none;
	-moz-user-select: none;
	-moz-user-drag: none;
	-o-user-select: none;
	-o-user-drag: none;
	user-select: none;
	user-drag: none;
}

.Window {
	background-color: whitesmoke;
	color: black;
	border-left: 1px solid #166AEE;
	border-bottom: 1px solid #003DDC;
	border-right: 1px solid #003DDD;
	border-top: none;
	padding: 0px;
}

.WindowContent {
	padding: 0px;  
}

p {
	padding: 8px;
	margin: 0px;
}

.PreWrap {
white-space: pre-wrap;  
}
        
.WindowWrapper {
	border-radius: 5px 5px 0px 0px;
	border-left: 2px solid #0019CF;
	border-top: 2px solid #0058EE;
	border-right: 2px solid #000E7D;
	border-bottom: 2px solid #00138C;
	margin-top: 5px;
	margin-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.pfp {
	width: 100%;
	height: 100%;
	border: 1px solid black;
	margin: 5px;
}

.TaskBar{
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(20px);
	border: 0px solid black;
	border-top: none;
	position: sticky;
	width: 100%;
	height: 50px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-radius: 0px 0px 0px 0px;
	text-align: center;
	color: white;
}

.TaskBar a {
	color: white;
}
        
.ToolBar {
	background-color: #EFEDDF;
	border: 1px solid #F2F4F2;
	border-bottom: 1px solid #D8D2BD;
	border-top: 1px solid #FFFFFF;
	padding: 10px;
}
        
img {
	max-width: 100%;
	max-height: auto;
}

@media only screen and (max-width: 1000px) {
	.MainContainer {
		margin-left: 10%;
		margin-right: 10%;
	}
}
    
@media only screen and (max-width: 768px) {
	.MainContainer {
		margin-left: 0.5%;
		margin-right: 0.5%;
	}
}

.poem {
	font-size: 20px;
    white-space: pre-wrap; 
    word-wrap: break-word;
}

h2 {
  text-decoration: underline;
  }

.codeblock {
  padding: 8px;
  word-wrap: break-word;
  white-space: pre;
  background-color: black;
  color: white;
  font-size: 12px;
  font-family: monospace;
  }
  
.dark-mode {
  color: white;
  background-color: black;
  }
  
.dark-mode a {
  color: #3D95FF;
}

.dark-mode .ToolBar {
        background-color: #3D4347;
        border: 1px solid #34393D;
        border-bottom: 1px solid #34393D;
        border-top: 1px solid #5C656B;
        color: white;
}

.dark-mode .Window {
  padding: 0px;
	background-color: black;
}

.disableSelect {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.displayGrid {
	display: grid;
}

.galleryDefault {
	display: grid;
}

.galleryTwoColumns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-flow: row dense;
}

.imageStamp {
	max-width: 15%;
	max-height: auto;
	border: 1px solid black;
	float: left;
	margin: 1%;
}

.modalButton {
	margin: auto;
	max-width: 5%;
	margin-bottom: 3%;
}

hr {
	border: none;
	height: 1px;
	color: #166AEE;
	background-color: #166AEE;
	margin: 0px;
}

.inlineCode {
	font-family: "Courier New", monospace;
}

.pageSideContent {
	height: 100%;
	border-left: 2px solid #166AEE;
}
.pageMainContent {
	height: 100%;
}