@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
  font-family: 'Inter', sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
}

#appbar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 54px;
  width: 100%;
  background-color: blue;
  transition: all 0.2s ease-in-out;
  display: flex;
}

#content {
  position: absolute;
  top: 54px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background-color: red;
  transition: all 0.2s ease-in-out;
}

#dialog {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
