body, html {
  margin: 0;
  padding: 0;
  width: 300;
  height: auto;
  background-color: #FCFC00; /* Fondo amarillo del escritorio */
  overflow: hidden; /* Evita el desplazamiento en la ventana */
}

.icon {
  cursor: pointer;
  position: absolute; /* Permite posicionar los iconos de forma absoluta en la página */
  height: auto;
  width: 800px; /* Tamaño de los iconos */
  height:auto;
}

.window {
  border: 2px solid #000;
  background-color: #fff;
  position: absolute;
  box-shadow: 15px 15px 0px rgba(0,0,0,0.2);
  overflow: hidden;
}

.title-bar {
  background-color: #000;
  padding: 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.title-bar span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  color: white;
  flex-grow: 1;
  text-align: center;
  font-family: 'Helvetica', sans-serif;
}

.title-bar button {
  color: white;
  font-size: 14px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
}

.content {
  padding-top: 10px;
}

.info {
  margin-top: 10px;
  z-index: 10;
  display: none;
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255);
  padding: 10px;
  box-sizing: border-box;
  font-size: 48px;
  font-family:'Courier New', Courier, monospace;
  text-align: center;
}