html,
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: #333;
  overflow: hidden;
}

.window {
  position: absolute;
  z-index: 9;
  background-color: #2b2b2b;
  border: 1px solid #272727;
  /* text-align: center; */
  color: #fff;
  border-radius: 5px;
  /* max-width: 300px;
  min-width: 300px;
  max-height: 400px;
  min-height: 400px; */
}

.windowheader {
  display: flex;
  text-align: left;
  padding: 10px;
  cursor: move;
  /* z-index: 10; */
  background-color: #131313;
  color: #fff;
  border-radius: 5px 5px 0 0;
  align-items: center;
}

.windowheader .close {
  width: 15px;
  height: 15px;
  /* z-index: 11; */
  background-color: red;
  margin-left: auto;
  margin-right: 0;
  border-radius: 50%;
}

#windowclone {
  display: none;
}
