/* #region Global */

:root {
  --color-dark-link: #6573ad;
  --color-dark-light: #2e2e2e;
  --color-gray: gray;
}

div.content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
  margin: auto;
  width: 100%;
}

div.content-wrapper p {
  color: var(--color-gray);
}

body.dark {
  background-color: var(--color-dark-light);
}

div.positioner {
  position: relative;
  top: 300px;
  left: 350px;
}

/* #endregion */

/* #region Trademark */

footer {
  bottom: 0;
  left: 0;
  position: absolute !important;
  width: 100%;
}

div.trademark {
  background-color: transparent !important;
  border: none !important;
  text-align: center;
  width: 100%;
  position: relative;
  top: 20px;
}

body.dark div.trademark a {
  color: var(--color-dark-link) !important;
}

/* #endregion */