* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Arial";
  color: rgb(240, 240, 240);
  font-family: "Roboto", sans-serif;
}

body {
  height: 100vh;
  width: 100%;
}

#main {
  height: 100vh;
  width: 100%;
  background-color: var(--body-bg-alt);
}
#header {
  background-color: var(--header-footer-bg);
  position: relative;
  height: 10vh;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 3;
}
#body {
  height: 80vh;
  width: 100%;
}
#footer {
  background-color: var(--header-footer-bg);
  position: relative;
  height: 10vh;
  width: 100%;
  z-index: 3;
}

.pages {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.inline p {
  display: inline-block;
}

.invalid {
  border: 1px solid rgb(256,68,68);
}

.rotate {
  transform: rotate(0.5turn);
}

.overflow {
  overflow: auto;
}

.fullHeight {
  height: 100%;
}
.fullWidth {
  width: 100%;
}

.space {
  margin-top: 30px;
  margin-bottom: 30px;
  height: 2px;
  width: 100%;
  background-color: #1A3636;
}

.floatLeft {
  float: left;
}
