* {
  padding: 0;
  margin: 0;
  font-family: "Courier New", monospace;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: "Courier New", monospace;
}

.desktop {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.desktop-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: url('../img/desktop-background.jpg');*/
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
}

.widget {
  position: absolute;
  top: 35px;
  right: 25px;
  width: 200px;
  height: 200px;
  background-color: #000;
  border: 2px #FFF dotted;
  overflow: hidden;
}

.widget img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taskbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #000;
  border: 1px #FFF dotted;
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: space-between; /* Added line */
  z-index: 1; /* Added line to ensure the taskbar is on top of the GIF */
}

.taskbar-icons {
  display: flex;
  align-items: center;
}

.current-time {
  color: #FFF;
  border: 1px #FFF dotted;
  font-size: 12px;
  margin-left: auto; /* Added line */
  margin-right: 20px;
  /* Adjust other styles as needed */
}

.moving-gif-container {
  position: absolute;
  top: -37px;
  left: -100vw; /* Updated line to align the container to the left */
  width: 200vw;
  height: 40px;
  overflow: hidden;
}

.moving-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: moveBackAndForth 4s infinite linear alternate;
}

@keyframes moveBackAndForth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100% - 100vw)); /* Adjust translateX value based on gif width */
  }
}

.start-button {
  width: 60px;
  height: 75%;
  background-color: #FFF;
  border: 1px #FFF dotted;
  /*background-image: url("../img/start.png");*/
  background-image: url("../img/mohanlal.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}

.taskbar-icons {
  display: flex;
  align-items: center;
}

.icon {
  width: 25px;
  height: 25px;
  margin-right: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: x-small;
  color: #FFF;
  border: 1px #FFF dotted;
}

.icon img {
  width: 20px;
  height: 20px;
}

.desktop-icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.desktop-icon {
  width: 80px;
  height: 80px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.desktop-icon:active{
  border: 1px #000 dotted;
}

.desktop-icon img {
  width: 40px;
  height: 40px;
}

.window {
  position: absolute;
  
  background-color: #000;
  color: #FFF;
  /*background-color: #FFF;
  color: #000;*/
  border: 1px #FFF dotted;
  width: 640px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.window-bar {
  background-color: #000;
  color: #FFF;
  border: 1px #FFF dotted;
  height: 18px;
  display: flex;
  align-items: center;
  padding: 2px;
}

.window-icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.window-title {
  color: #FFF;
  margin-right: auto;
  font-family: "Courier New", monospace;
  font-weight: bold;
  font-size: 11px;
  margin-left: 2px;
}

.window-close {
  margin-left: auto;
  width: 14px;
  height: 13.5px;
  background: #000;
  color: #FFF;
  border-width: 1px;
  border-color: #FFF;
  padding: 0;
  font-size: 9px;
  font-weight: bold;
  font-family: "Courier New", monospace;
  text-align: center;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window-close::after {
  content: 'X';
  color: #FFF;
  display: block;
  text-align: center;
  line-height: 18px;
  font-size: 9px;
}

.window-content {
  padding: 13px 12px 12px;
  height: calc(100% - 18px);
  width: calc(100% - 24px);
  display: inline-block;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #808080 #000;
  position: relative;
  overflow-x: hidden;
}

.window-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.window-content::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 4px;
}

.window-content::-webkit-scrollbar-thumb:hover {
  background-color: #606060;
}

.window-content::-webkit-scrollbar-track {
  background-color: #000;
  border-radius: 4px;
}


.h1, .h2, h3, h4, h5 {
  /*
  background-color: #000;
  color: #FFF;
  */
  background-color: #FFF;
  color: #000;
  
}