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

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

body {
  background-color: #cfcec9;

  display: flex;
  flex-direction: row;

  min-height: 100dvh;
  min-width: 100vw;

  justify-content: space-around;
  align-items: center;
  gap: 1%;

  padding: 0 5rem;

  @media screen and (max-width: 1100px) {
    flex-direction: column; 
    gap: 1rem;
    padding: 10rem 0;
    overflow-y: hidden;
  }
}


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

  height: 40px;
  width: 40px;

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

.resizable {
  background-color: #faf9f6;

  width: 30%;
  height: 30rem;

  @media screen and (max-width: 1100px){
    height: 10rem;
    width: 80%;
  }


  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.08), 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.resizable-two {
  background-color: #faf9f6;

  width: 30%;
  height: 30rem;

  overflow: hidden;
  /* resize: both; */

  @media screen and (max-width: 1100px){
    height: 10rem;
    width: 80%;
  }


  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.08), 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

.resizable-three {
  background-color: #faf9f6;

  width: 30%;
  height: 30rem;

  overflow: hidden;
  /* resize: both; */

  @media screen and (max-width: 1100px){
    height: 10rem;
    width: 80%;
  }


  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  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);
}


.resizable-fallthrough {
  position: absolute;
  min-width: 80%px;
  min-height: 80%;

  height: 90%;
  width: 90%;
  background-color: #faf9f6ff;


  top: 5%;
  left: 5%;

  overflow: hidden;
  resize: both;

  pointer-events: none;

  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0px 16px 16px 0px rgba(0, 0, 0, 0.08), 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

.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;
}

#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;
  }
}