/*CSS for index & 404. DO NOT DELETE!*/

body {
  font-family: "Noto Sans Tagalog", Regular;
}

.square-thing {
  text-align: center;
  border: 1px solid black;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }

@media (prefers-color-scheme: dark) {
  body{
    background: black;
    color: white;
  }
  .square-thing {
    text-align: center;
    border: 1px solid white;
    padding: 0.5em 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}