* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
	font-family: calibri;
}

:root {
	--mainColor: #ffffff38;
	--border: 1px solid #ffffff24;
	--boxShadow: 0 0 25px -20px #6200ff;
}

/*context menu*/
.contextMenu {
	border: var(--border);
	background: var(--mainColor);
	padding: 5px;
	border-radius: 10px;
	position: absolute;
	z-index: 9999;
	width: 250px;
	backdrop-filter: blur(10px);
	opacity: 0;
	transition: 0.1s opacity linear;
	box-shadow: var(--boxShadow);
}

.contextMenu > button {
	display: block;
	border: none;
	background: transparent;
	width: 100%;
	padding: 7px 10px;
	text-align: left;
	border-radius: 5px;
}

.contextMenu > hr {
	margin: 0 10px;
	border: 1px solid #0000000f;
}

.contextMenu > button:hover {
	background: #ffffff2b;
}

.mainContainer {
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: linear-gradient(45deg, #9dcdff, #d368ff);
	position: relative;
}

.centerLogo {
	position: absolute;
	top: 0;
	left: 0;
	height: inherit;
	width: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.centerLogo span {
	margin-left: 10px;
	color: white;
	font-size: 17px;
}

.taskbar {
	height: 39px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	backdrop-filter: blur(10px);
	background: var(--mainColor);
	z-index: 9999;
	border: var(--border);
}

.taskbar > .windowsIcoTaskbar {
	height: 74%;
}

.bottomBarMain {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	transition: bottom 0.25s cubic-bezier(0.4, 0, 1, 1);
}

.bottomBar {
	height: 550px;
	width: 450px;
	background: var(--mainColor);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	z-index: 9999;
	border: var(--border);
	box-shadow: var(--boxShadow);
}

.datetimeTaskbar {
	position: absolute;
	right: 10px;
	bottom: 0;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	height: 40px;
}

.datetimeTaskbar span {
	font-size: 13px;
	font-weight: 100;
}

.desktop {
	width: 100%;
	height: calc(100% - 39px);
	position: relative;
	z-index: 5;
	top: 0;
}

.app {
	border: var(--border);
	height: 450px;
	width: 600px;
	background: var(--mainColor);
	border-radius: 10px;
	backdrop-filter: blur(10px);
	overflow: hidden;
	margin: 35px;
	box-shadow: var(--boxShadow);
}

.appTop {
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
}

.closeApp {
	background: transparent;
	border: none;
	color: white;
	font-size: 16px;
	padding: 4px;
	height: 100%;
	text-transform: capitalize;
	fill: white;
	border-radius: 8px;
	transition: 0.25s background linear;
}

.closeApp:hover {
	background: #ff002fc7;
}

.app iframe { 
	width: 100%;
	height: calc(100% - 25px);
}