:root {
  --win-blue: #000080;
  --win-blue-active: #0000AA;
  --taskbar-gray: #C0C0C0;
}

@font-face {
  font-family: "MS Sans Serif";
  src: url("fonts/ms-sans.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url("/images/main.jpg");
  background-repeat: repeat;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  margin: 0;
}

* { box-sizing: border-box; }

.cone {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.icon {
  width: 72px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 11px;
  color: white;
  cursor: default;
}

.icon-inner {
  padding: 6px 4px 4px 4px;
}

.icon img {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
}

.icon-label {
  display: inline-block;
  background-color: ;
  padding: 2px 4px;
  line-height: 12px;
}

.icon.selected .icon-label {
  background-color: var(--win-blue-active);
}

.recycle-bin {
  position: fixed;
  right: 20px;
  bottom: 60px;
}

.window {
  position: absolute;
  left: 350px;
  z-index: 10;
  user-select: none;
}

.window img {
  -webkit-user-drag: none;
  user-select: none;
}

#window {
  top: 80px;
  left: 400px;
}

#window-about {
  top: 120px;
  left: 180px;
}

.center {
  text-align: center;
}

.titlebar-drag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  cursor: move;
}

.content-inside {
  position: absolute;
  top: 120px;
  left: 200px;
  width: 550px;
  height: auto;
  background: white;
  padding: 10px;
  overflow: hidden;
  font-family: "Times New Roman", Times, serif;
  text-align: justify;
  font-size: 18px;
  color: #000000;
}

.badges {
  text-align: center;
  margin-top: 10px;
}

.badges img {
  margin: 2px 4px;
  vertical-align: middle;
}

.btn-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
}

#taskbar {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 32px;
  background: var(--taskbar-gray);
  border-top: 2px solid #FFF;
  display: flex;
  align-items: center;
  padding: 4px;
  z-index: 1000;
}

.start {
	width: 54px; 
	height: 22px;
}

.taskbar-icon1 {
	width: 11px; 
	height: 26px;
}

.taskbar-icon2 {
	width: 20px; 
	height: 26px;
}

#clock {
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  padding: 3px 6px;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 11px;
  display: flex;
  gap: 4px;
  line-height: 1;
  align-items: center;
  font-smooth: never;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: none;
}

#clock {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  padding: 2px 6px 1px 6px;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  font-size: 11px;
  display: flex;
  -webkit-font-smoothing: none;
}

.clock-icon {
	width: 18px; 
	height: 20px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20px;
  z-index: 999;
  background: #E0E0E0;
  border-top: 1px solid #808080;
  text-align: center;
  font-size: 11px;
}