body {
  margin: 0;
  font-family: sans-serif;
}

.desktop {
  height: 100vh;
  background-image: url(wall_paper.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
}

.icon {
  cursor: pointer;
  margin: 10px;
  color: white;
  font-size: 80px;
}

.window {
  width: 260px;
  height: 220px;
  background: white;
  position: absolute;
  top: 100px;
  left: 100px;
  display: none;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  z-index: 1;
}

.title-bar {
  background: #333;
  color: white;
  padding: 5px;
  cursor: grab;
  border-radius: 10px 10px 0 0;
}

.close {
  float: right;
  cursor: pointer;
}

.content {
  padding: 10px;
}

textarea {
  width: 100%;
  height: 150px;
  border: none;
  outline: none;
}

.taskbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: aqua;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.right-icons {
  display: flex;
  gap: 10px;
}