body {
	background: url("../img/Tulips.png");
	background-size: 100%;

}

.window {
	position: fixed;
}
.window .title {
	&::before {
		content: url("../img/windowbox_left.png");
		position: absolute;
		top: 0;
		left: 0;
	}

	box-sizing: border-box;
	background-image: url("../img/windowbox_title.png");
	height: 29px;
	padding-top: 2px;
	padding-left: 26px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 7px 7px 0px 0px;
	color: white;

	&::after {
		content: url("../img/windowbox_buttons.png");
		position: absolute;
		top: 0;
		right: 0;

	}
}

.window .title .name {
	position: relative;
	top: -20%;
}
.window .frame{
	box-sizing: border-box;
	border-image-source: url("../img/windowbox_notitle.png");
	border-image-slice: 0 6 6 6 fill;
	border-image-repeat: stretch;
	border-image-width: 0px 6px 6px 6px;
	padding: 10px;
}

.icons {
	display: flex;
	flex-direction: column;
	list-style: none;
	padding-left: 16px;
	width: 96px;
	text-align: center;
	align-items: center;
}

.icons a {
	text-decoration: none;
	color: black;
}
.icons a figure {
	margin-bottom: 4px;
}

.taskbar {
	position: fixed;
	bottom: 0;
	height: 28px;
	width: 100%;
	background-image: url("../img/taskbar.png");
}
.taskbar.start {
	content: url("../img/Start.png");
	left: 0;
	width: 100px;
	/*padding: 0;*/
}
.taskbar.tray{
	width: 100px;
	right: 0;
	background-image: url("../img/taskbar_tray.png");
	font-family: Tahoma, sans-serif;
	font-size: 12px;
	text-align: center;
	color: white;
}
#taskbarTime {
	 position: relative;
	 top: -20%;
}