@font-face {
    font-family: 'px_sans_nouveauxregular';
    src: url('fonts/px_sans_nouveaux-webfont.woff2') format('woff2'),
         url('fonts/px_sans_nouveaux-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: px_sans_nouveauxregular, Arial, sans-serif !important; 
	font-size: 10px;
	font-weight: lighter;
	position: relative;
	padding: 0;
}

body, html {
  height: 100%;
}

#screen {
	display: flex;
	flex-flow: column;
	margin: 0;
	height: 100vh;
}

#desktop {
	display: flex;
	background-color: #008080;
	height: 100vh;
}

.icon {
	margin: 5px;
	color: white;
	margin: 10px;
	text-align: center;
}

.window {
	border-style: solid;
	border-bottom-style: outset;	
	border-width: 2px;
	border-bottom-width: 1px;
	border-color: rgb(250,250,250);
	border-bottom-color: black;
	box-shadow: 2px 2px rgba(90,90,90, 0.5);
	margin: 10px;
	border-radius: 2px;
	position: absolute;
	padding: 2px;
	background-color: #C0C0C0;
}

#folder1 {
	left: 5vh;
	top: 5vh;
	z-index: 1;
}

#folder2 {
	left: 10vh;
	top: 10vh;
	z-index: 2;
}


.window-title {
	display: flex;
	padding: 3px 0px 0px 5px;
	align-items: center;
}

.window-title.inactive {
	background-color: #7F787F;	
	color: #B0B0B0;
	font-weight: bold;
}

.window-title.active {
	background-color: #020C7E;	
	color: white;
	font-weight: bold;
}

.title {
	margin: 0px 0px 0px 5px;
}

.command-bar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	background-color: #C0C0C0;
}

.command {
	margin: 5px;
}

.command::first-letter {
	text-decoration: underline;
}

.window-content {
	background-color: #FFFFFF;
	padding: 10px;
	display: flex;
}

.foldericon {
	color: black;
	margin: 5px 10px 0px 20px;
	text-align: center;
}

.status-bar {
	background-color: #C0C0C0;
	margin: 1px;
}

#taskbar {
	background-color: #C0C0C0;
	font-weight: bold;
	display: flex;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(250,250,250);
	border-radius: 2px;
	background-color: #C0C0C0;
	padding: 1px;
	z-index: 3;
	height: 40px;
}

#startbutton {
	display: flex;
	border-style: solid;
	border-bottom-style: outset;	
	border-width: 2px;
	border-bottom-width: 1px;
	border-color: rgb(250,250,250);
	border-bottom-color: black;
	box-shadow: 2px 2px rgba(90,90,90, 0.5);
	margin: 2px;
	border-radius: 2px;
	padding: 2px;
	background-color: #C0C0C0;
	align-items: center;
}

#starttext {
	margin: 0 0 0 5px;
	font-weight: bolder;
}