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

.page-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content-container {
  flex: 1;
}

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 20px;
  padding-bottom: 0;
  text-align: center;
  font-size: calc(14px * var(--font-size-modifier));
  max-width: 100%;
  font-family: 'Times New Roman', Times, serif;
}

.top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}



.bottom {
  margin: 0;
  padding: 0;
  line-height: 0.5;
  font-size: calc(12px * var(--font-size-modifier));
  color: var(--footer-text);
}

.link {
  color: var(--links-text);
  text-decoration: none;
}

.divider {
  width: 97%;
  height: 1px;
  background-color: var(--footer-text);
  margin: 20px auto;
}

#icon {
  color: var(--footer-text);
  font-size: calc(14px * var(--font-size-modifier));
  margin: 0 3px;
}


