body {
  background-image: url(/img/wallpaper.jpg);
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
  font-family: "Segoe UI", Arial, sans-serif;
  color: hotpink;
}

.escritorio{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.folder{
  position: static;
  height: 100px;
  transition: transform 0.5s ease;
}
.folder:hover {
  /* transform: rotate(10deg); */
    background-color: whitesmoke;
}

.barraTareas{
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50px;
  background-color: whitesmoke;  
  border: 2px solid grey;
}

.iconos{
  position: fixed;
  height: 40px;
}
.iconos:hover {
  /* transform: rotate(10deg); */
  filter: brightness(200%);
}

.ventana{
  width: 1000px;
  height: 500px;
  background: whitesmoke;
  padding: 15px;
  border: 4px solid gray;
  color: black;

  overflow-y: scroll;
  scrollbar-color: gray;
  scrollbar-width: thin;
}