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

body {
  background: white;
  font-family: "Public Sans", sans-serif;
  font-optical-sizing: auto;
}

.app {
  display: flex;
}

/* Sidebar */
.ui {
  width: 15em;
  background: white;
  padding: 20px;
  color: rgb(35, 31, 32);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-size: 14px;
}



/* Canvas ocupa resto */
.canvas-container {
  flex: 1;
  display: block;
  justify-content: center;
  align-items: top;
  overflow: hidden;
}

/* Responsividade */
@media (max-width: 720px) {
  .app {
    flex-direction: column;
  }

  .ui {
    width: 100%;
    height: 30%;
  }

  .canvas-container {
    height: calc(100vh - 250px);
  }
}
