#win95-startbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: #c0c0c0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  display: flex;
  align-items: center;
  padding: 2px;
  font-family: 'Tahoma', sans-serif;
  z-index: 9999;
}

#win95-startbar button,
#win95-startbar a {
  background: #c0c0c0;
  border: 2px outset #fff;
  padding: 2px 10px;
  margin-right: 8px;
  font-weight: bold;
  cursor: pointer;
  min-width: 100px;
}

#start-button:active {
  border: 2px inset #fff;
}

#start-menu {
  position: absolute;
  bottom: 32px;
  left: 2px;
  width: 200px;
  background: #f0f0f0;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #808080;
  font-size: 14px;
}

#start-menu ul {
  list-style: none;
  margin: 0;
  padding: 4px;
}

#start-menu li {
  color: black;
  padding: 6px;
  cursor: pointer;
}

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

