* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  overflow: hidden;
  background: url('IMG_3012.jpeg') center/cover no-repeat;
  height: 100vh;
  cursor: url('cursor .png'), auto;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  padding: 0 10px;
  z-index: 1000;
}

.start-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.windows-logo {
  width: 20px;
  height: 20px;
}

.search-box {
  margin-left: 10px;
  flex: 1;
}

.search-box input {
  width: 200px;
  padding: 5px 10px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 3px;
}

.system-tray {
  color: white;
  padding: 0 10px;
}

.charms-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.charm {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  cursor: pointer;
}

.charm img {
  width: 24px;
  height: 24px;
}