@import "theme.css";


*,html{
  box-sizing: border-box;
  font-family: var(--font-family);
  font-size: 1rem;
}

html, body{
  padding:0px;
  margin:0px;
  width:100%;
  height:100%;
}

body {
  display: block;
}

.dg-grid{
  display:grid;
  width: 360px;
  margin:auto;
  height:100%;
  max-height:100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  row-gap: 8px;
  align-items: center;
  justify-items: center;
}

