@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://s1-static.schiau.co/core/fonts/opensans/OpenSansLight.ttf) format('truetype');
}

:root {
  color-scheme: light light;
}

@media (prefers-color-scheme: light) {
  :root {
    --special-text-color: black;
  }

  input,
  a,
  .announcement i copyright {
    color: black;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --special-text-color: black;
  }

  input,
  a,
  .announcement i copyright {
    color: black;
  }
}

.special {
  color: var(--special-text-color);
  border: 1px solid var(--border-color);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
input {
  font-family: 'Open Sans', 'Lucida Grande', 'Lucida Grande Unicode', 'Helvetica', 'Arial';
  font-weight: 300;
  font-size: 14px;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in landscape while allowing user zoom */
}

body {
  min-height: 100%;
}


p {
  font-weight: 100;
  margin-block: .3em;
}

.canvas {
  display: table;
  position: absolute;

  height: 100%;
  width: 100%;

  margin: 0 auto;
}

.page {
  display: table-cell;

  min-width: 300px;

  vertical-align: middle;
  text-align: center;
}

h1 {
  margin-bottom: 0;
}

h2 {
  font-size: 2em;
}

.announcement i {
  display: inline;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  background-color: #05c3de;
  padding: 5px;
  border-radius: 5px;
}

a {
  text-decoration: none;
  border-bottom: 3px double #05c3de;
}

a:hover {
  border-bottom: 3px double black;
}

.logo {
  background-image: url(https://s1-static.schiau.co/core/img/meko.jpg?2f52e780);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
}

copyright {
  padding-top: 0;
  font-size: 1em;
}