/* view/index.css */
:root {
  background-color: #222222;
  color: #efefef;
  font-family: var(--font-family);
}
#header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.25);
}
#content {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  bottom: 64px;
  overflow: auto;
}
#version {
  position: fixed;
  right: 0;
  bottom: 0;
  color: #EEEEEE;
}
#footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.25);
}
#footer > div {
  margin: auto;
}
