/* General Desktop Look */
body {
  margin: 0;
  padding: 0;
  font-family: Tahoma, sans-serif;
  background: url("../Images/Background.jpg") no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
}

#desktop {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 20px;
}


/* Desktop Icons */
.icon {
  width: 80px;
  margin: 10px;
  text-align: center;
  cursor: pointer;
}
.icon img {
  width: 48px;
  height: 48px;
}
.icon span {
  display: block;
  color: white;
  font-size: 12px;
  margin-top: 5px;
  text-shadow: 1px 1px 2px black;
}

/* Windows */
.window {
  width: 700px;
  height: 500px;
  background: #ece9d8;
  border: 2px solid #000;
  position: absolute;
  top: 100px;
  left: 100px;
  display: none;
  flex-direction: column;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}
.window-content iframe {
  width: 100%;
  height: 315px;
  border: none;
}
.title-bar {
  background: #000080;
  color: white;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: move;
}
.title-bar button {
  background: red;
  color: white;
  border: none;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.window-content {
  padding: 10px;
  flex: 1;
  overflow-y: auto;
}
.preview {
  width: 100%;
  border: 1px solid #333;
  margin-top: 10px;
}

/* Taskbar */
#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
  background: #3B77BC;
  display: flex;
  align-items: center;
  padding-right; 10px;
  box-sizing: border-box;
}
#start-btn {
  height: 40px;
  cursor: pointer;
}
#clock {
  margin-left: auto;
  font-size: 14px;
  padding-right: 10px;
  white-space:
}
