/* Remove all default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make html and body fill the entire window */
html, body {
  height: 100%;
  width: 100%;
  overflow: hidden; /* prevent scrolling */
}

/* Ensure the container spans full size */
#curia-forum {
  height: 100%;
  width: 100%;
}