body{
  margin:0;
  font-family:Tahoma;
}

/* LOGIN */
#login{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  background:#ffd6f6;
}

/* DESKTOP */
#desktop{
  height:100vh;
  position:relative;

  background-image:url("https://xcms.neocities.org/page/kitty/img/fondo.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  background-color:#ffd6f6; /* fallback */
}

.hidden{ display:none; }

/* ICONOS */
.desktop-icons{
  position:absolute;
  top:20px;
  left:20px;
}

.icon{
  margin-bottom:15px;
  cursor:pointer;
  color:#ff4da6;
}

/* TASKBAR */
#taskbar{
  position:absolute;
  bottom:0;
  width:100%;
  background:#ff69b4;
  display:flex;
  justify-content:space-between;
  padding:5px 10px;
  color:white;
}

/* BOTONES */
button{
  background:#ff69b4;
  border:none;
  color:white;
  padding:5px 10px;
  border-radius:8px;
  cursor:pointer;
}

/* MENU */
#startMenu{
  position:absolute;
  bottom:40px;
  left:10px;
  background:#fff;
  padding:10px;
  border-radius:10px;
}

/* VENTANAS */
.window{
  position:absolute;
  top:80px;
  left:100px;
  width:500px;
  height:400px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 0 10px rgba(0,0,0,0.2);

  display:flex;
  flex-direction:column;
}

/* MAXIMIZAR */
.window.max{
  width:100%;
  height:calc(100vh - 40px);
  top:0;
  left:0;
}

/* MINIMIZAR */
.window.min{
  display:none;
}

/* TITLE */
.title{
  background:#ff69b4;
  color:#fff;
  padding:5px;
  display:flex;
  justify-content:space-between;
  flex-shrink:0;
}

/* TERMINAL */
#output{
  flex:1;
  overflow:auto;
  font-family:monospace;
  white-space:pre-wrap;
  padding:5px;
}

.input-line{
  display:flex;
  flex-shrink:0;
}

#prompt{
  color:#ff69b4;
  margin-right:5px;
}

#cmd{
  flex:1;
  border:none;
  outline:none;
  font-family:monospace;
}

/* NOTEPAD */
textarea{
  flex:1;
  width:100%;
  border:none;
  outline:none;
  background:#fff0f6;
  padding:10px;
}

/* BROWSER */
#browser input{
  border:none;
  padding:5px;
  outline:none;
}

iframe{
  flex:1;
  width:100%;
  border:none;
}

/* RELOJ */
#clock{
  font-size:12px;
}