html, body {
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
  }
  body {
    font-family: monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2c3e50;
    margin: 0;
    padding: 0;
  }
  *, ::after, ::before {
    box-sizing: border-box;
  }


/* body {
  --top-room-editor-grid-area: main;
  --scene-viewer-grid-area: side_bottom;
} */

/* body.swapped {
  --top-room-editor-grid-area: side_bottom;
  --scene-viewer-grid-area: main;
} */
  
  .unselectable {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  }

  
  :root {
    --color1: #eef0f2;
    --color2: #a2999e;
    --color3: #846a6a;
    --color4: #353b3c;
    --color5: #ff715b;
    --color6: #0cca4a;
  }

 



.btn-tmp {
  margin: 14px 2px 0 2px;
  display: inline-block;
  text-decoration: none;
  font-family: system-ui, monospace;
  text-shadow: 0 0 1px rgb(0 0 0 / 20%);
  color: #997000;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid #2c3e50;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn-tmp:after {
  content: "";
  background-color: #ffedc0;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.btn-tmp:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .btn-tmp {
    padding: 13px 50px 13px;
  }
}