html {
	min-height: 100%;
}

body {
	font-family: Andale Mono, monospace;
	background: url(https://i.imgur.com/tkQ4Bn3.png) center no-repeat;
	background-size: cover;
	padding: 8vh 0vw 2vh 0vw;
}

.button {
	height: 11px;
	width: 11px;
	border-radius: 50%;
	border: 1px solid #000;
	position: relative;
	top: 6px;
	left: 6px;
	background-color: #ff3b47;
	border-color: #9d252b;
	display: inline-block;
}

.button:hover {
	opacity: 0.65;
}

.min {
	left: 11px;
	background-color: #ffc100;
	border-color: #9d802c;
}

.max {
	left: 16px;
	background-color: #00d742;
	border-color: #049931;
}

.header {
	position: absolute;
	width: 70vw;
	background: white;
}
.window {
	background: rgba(0, 40, 55, 0.82);
	box-shadow: 0px 0px 40px black;
	width: 70vw;
	margin: auto;
	border: 2px solid white;
	border-radius: 3px;
	white-space: normal;
}
@media (orientation: portrait) {
	.window {
		width: 90vw; /* Adjust the width based on your needs */
	}
	.header {
		width: 90vw; /* Adjust the width based on your needs */
	}
}

.titlebar {
	height: 30px;
	background-color: white;
}

.screen {
	min-height: 40vh;
	max-height: 60vh;
	padding: 6vh 3vw 6vh 3vw;
	color: white;
	margin: 0px 0px 0px 0px;
	overflow-x: hidden; /* Hide horizontal scrollbar */
	overflow-y: auto; /* Add vertical scrollbar */
}
.centerscreen {
	font-size: 24px;
	text-align: center;
}
.homescreen {
	font-size:16px;
	text-align: left;
	word-wrap: inherit;
}

.inner {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* General link styles */
/* unvisited link */
a:link {
	color: #B1A9F9;
	text-decoration: none;
}
/* visited link */
a:visited {
	color: #B1A9F9;
	text-decoration: none;
}
/* mouse over link */
a:hover {
	color: #B1A9F9;
	text-decoration: bold;
}
/* selected link */
a:active {
	color: #8679FE;
	text-decoration: underline;
}

#clearHeader {
	padding: 60px 0px 0px 0px;
	background: white;
}

/* Header styles */
.headerCell {
	background-color: white;
	border: solid black 1px;
	width: 1%;
	font-size: 22px;
}

.headerCell:hover {
	text-decoration: none;
}

a.headerLink {
	color: black;
}

a.headerLink:hover {
	text-decoration: none;
}