:root {
  --height: 50%;
  --width: 24%;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  z-index: 0;
  background-color: #cfcec9;
}


.draggable {
  position: absolute;
  top: 50%;
  left: 1300px;

  height: 40px;
  width: 40px;

  background-color: blueviolet;
  border-radius: 20px;
}

.resizable {
  position: absolute;
  background-color: #faf9f6;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.08), 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.held {
  background-color: rgb(245, 245, 245);
}

.titlebar {
  position: absolute;

  background-color:rgb(240, 240, 240);
  top: 0px;
  left: 0px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.04);

  width: 100%;
  height: 52px;
}

.resizeHandle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #000;
  cursor: se-resize;
}

/* #sketch-left {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  z-index: 100;
  font-weight: 800;
  border: 2px solid #cccccc;
  border-radius: 16px;

  padding: 16px;
}

#sketch-right {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  z-index: 100;
  font-weight: 800;
  border: 2px solid #cccccc;
  border-radius: 16px;

  padding: 16px;
} */

.tip {
  display: flex;
  justify-content: center;
  font-family: Degular, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: fixed;
  width: 100vw;
  top: 2%;

  h2 {
    margin: 0 2rem;
    z-index: 40;
  }
}