@font-face {
  font-family: "Monospace TextWall";
  src: url(/fonts/monospace-textwall-wip.ttf);
}
body, html { 
  background-color: #000000; 
}
* {
  font-family: "Monospace TextWall", monospace;
  font-weight: normal;
  color: #ffffff;
  size: 12px;
}
h1 {
  size: 25px;
  text-shadow: 0 2px 0 #ffffff80, 0 4px 0 #ffffff40;
}
h2 {
  size: 20px;
  text-shadow: 0 2px 0 #ffffff40;
}
div.contain {
  padding: 10px;
  position: fixed;
  left: 0;
  top: 10px;
  width: 400px;
  height: calc(100dvh - 20px);
  border-radius: 0 20px 20px 0;
  background-image: linear-gradient(to right, #000000c0, #00000080);
  backdrop-filter: blur(4px);
  z-index: 1;
  overflow-x: hidden;
  overflow-y: scroll;
}
div.newsticker {
  position: fixed;
  padding: 4px;
  top: 0;
  right: 0;
  width: 40%;
  height: inherit;
  text-align: center;
  background-image: linear-gradient(to right, #00000020, #000000c0);
  backdrop-filter: blur(4px);
  border-color: #404040c0;
  border-left-style: solid;
  border-width: 6px;
  z-index: 999;
}
a {
  transition: color 0.6s, text-shadow 0.6s;
}
a:link {
  color: #6060ff;
  text-shadow: 1px 1px 3px #4040ff;
}
a:visited {
  color: #c060ff;
  text-shadow: 1px 1px 3px #a040ff;
}
a:hover {
  color: #ffffff;
  text-shadow: 1px 1px 3px #808080;
}
a:active {
  color: #c0c0c0;
  text-shadow: 0px 0px 3px #c0c0c0;
}
button {
  background-color: #ffffff;
  background-image: linear-gradient(to bottom, #fff0, #0004);
  color: #000000;
  text-shadow: 1px 1px 3px #00000080;
  padding: 2px;
  border-radius: 3px;
  border: 2px solid #707070;
  cursor: pointer;
  transition: border 0.6s, background-color 0.6s, box-shadow 0.6s;
}
button:hover {
  background-color: #c0c0c0;
  box-shadow: 0px 0px 4px #ffffff;
  border: 2px solid #404040;
}
button:active {
  background-color: #808080;
  border: 2px solid #202020;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
input {
  background-image: linear-gradient(to bottom, #000000, #404040);
  border: 1px solid #606060
}