* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  background: url('https://cdn.pixabay.com/photo/2023/04/30/14/52/countryside-7960674_1280.jpg') no-repeat center center fixed;
  background-size: cover;
  
  overflow: auto;
  position: relative;
  font-family: 'VT323', monospace;
}


/* Taskbar */
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
  background: #222;
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 10;
}

.taskbar button {
  background: #444;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

/* Start Menu */
.start-menu {
  position: fixed;
  bottom: 40px;
  left: 10px;
  width: 200px;
  background: #eee;
  border: 1px solid #aaa;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
  z-index: 20;
}

.start-menu li {
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.start-menu li:hover {
  background: #ddd;
}

.hidden {
  display: none;
}

/* Draggable Icons */
.icon-box {
  position: absolute;
  width: 80px;
  text-align: center;
  cursor: move;
  user-select: none;
  color: white;
  font-family: "Tahoma", sans-serif;
  font-size: 12px;
}

.icon-img {
  width: 50px;
  height: 50px;
  image-rendering: pixelated;
}

.icon-label {
  display: block;
  margin-top: 4px;
  text-shadow: 1px 1px black;
}


/* App Windows */
.window {
  position: absolute;
  width: 300px;
  background: #c0c0c0;
  border: 2px solid #000;
  box-shadow: 4px 4px #808080;
  font-family: "Tahoma", sans-serif;
  font-size: 12px;
}

.window-header {
  background: #000080;
  color: white;
  padding: 4px 6px;
  font-weight: bold;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-content {
  background: #ffffff;
  padding: 10px;
  border-top: 2px solid #808080;
}


.close-button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.minimize-button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
