:root {
    --bg: rgba(10,10,10,1);
    --bg2: rgba(255,255,255,.1);
    --bg3: rgba(50,50,50,1);
    --text1: rgba(255,255,255,1);
    --text2: rgba(255,255,255,.6);
    --text3: rgba(255,200,170,1);
    --lcs: rgba(100,200,255,.5);
}

@font-face {
  font-family: Wiki;
  src: url(https://api.datanet.lencraftserver.de/fonts/wiki.ttf);
}

@font-face {
  font-family: "Wiki Bold";
  src: url(https://api.datanet.lencraftserver.de/fonts/wiki-2.ttf);
}

* {
transition: 200ms ease;
}

h1 {
font-size: 30px;
}

b {
color: var(--text3);
}

main a {
color: var(--text2);
text-decoration: none;
background: var(--bg2);
padding: 5px;
border-radius: 5px;
}

main a:hover {
filter: brightness(.5);
}

.exlink {
width: 20px;
filter: invert(.6);
transform: translate(0,20%);
}

html {
  background: var(--bg);
  color: var(--text1);
  font-family: Wiki;
}

body {
  padding: 0;
  margin: 0;
}

header {
  font-size: 40px;
  font-weight: 1000;
  background-color: var(--bg2);
  padding: 10px 20px;
  position: relative;
}

header #header-left {
  display: flex;
  align-items: center;
}

header #logo {
  line-height: 50px;
  margin-right: 20px;
  font-family: "Wiki Bold";
}

header a {
  color: white;
  text-decoration: none;
}

header input {
  width: 500px;
  height: 50px;
  padding: 0 10px;
  border: none;
  border-radius: 5px;
  background: var(--bg2);
  font-size: 15px;
  color: var(--text1);
}

header #results {
  position: absolute;
  top: 70px;
  left: 182.5px;
  width: 500px;
  padding: 0 10px;
  background: var(--bg3);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
  border: none;
  z-index: 9999;
}

header #results div {
  padding: 12px;
  cursor: pointer;
  font-size: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

header #results div:hover {
  background: rgba(255,255,255,0.07);
}

main {
  margin: 20px;
}

table {
border-collapse: collapse;
border-radius: 10px;
}

table td {
margin-left: 20px;
padding: 10px;
background: var(--bg2);
}

table td:nth-child(2) {
text-align: right;
}

.lcs {
background: var(--lcs);
}
