




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'MS Sans Serif', Arial, sans-serif;
}








.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.project-card {
  background: #c0c0c0;
  border: 2px solid #fff;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.project-card h4 {
  margin-top: 5px;
  font-size: 14px;
}

.project-card p {
  font-size: 12px;
  color: #000080;
}

.project-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px inset #fff;
  margin: 0 auto 5px auto;
}







.taskbar-clock {
  margin-left: auto;
  padding: 0 10px;
  font-size: 14px;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  color: black;
  display: flex;
  align-items: center;
}










body, html {
  height: 100%;
  width: 100%;
  background: #111111 url('https://res.cloudinary.com/dpiew5eib/image/upload/v1756913442/Portfolio_1080_x_1080_px_8_ve7tvv.png') center center no-repeat;
  position: relative;
}

/* Desktop icons */
.desktop {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.icon {
  width: 80px;
  text-align: center;
  margin: 10px;
  cursor: pointer;
  color: white;
}

.icon img {
  width: 48px;
  height: 48px;
}

/* Taskbar */
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #c0c0c0;
  display: flex;
  align-items: center;
}

.start-button {
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px; /* space between icon and text */
}

.start-button img.start-icon {
  width: 16px;   /* size of the Windows 95 flag */
  height: 16px;
}


.taskbar-windows {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

/* Start menu */
.start-menu {
  position: fixed;
  bottom: 40px;
  left: 0;
  width: 200px;
  background: #c0c0c0;
  border: 2px solid #fff;
  display: none;
}

.start-menu ul {
  list-style: none;
}

.start-menu li {
  padding: 10px;
  cursor: pointer;
}

.start-menu li:hover {
  background: #000080;
  color: white;
}

/* Windows */
.window {
  position: fixed;
  top: 50px;
  left: 50px;
  width: 300px;
  background: #c0c0c0;
  border: 2px solid #fff;
  display: none;
  flex-direction: column;
  z-index: 10;
}

.window-title {
  background: navy;
  color: white;
  padding: 5px;
  font-weight: bold;
  cursor: move;
}

.window-content {
  padding: 10px;
  background: #c0c0c0;
  min-height: 100px;
}

.close-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  .desktop {
    justify-content: center;
  }
  .window {
    width: 90%;
    left: 5%;
  }
}
