@font-face { font-family: Minecrafter; src: url('/fonts/Minecrafter-Regular.ttf'); }
@font-face { font-family: Minecraftia; src: url('/fonts/Minecraftia-Regular.ttf'); }

:root {
  --cur-main: url('/assets/EnderMain.png'), auto;
  --cur-point: url('/assets/EnderSelect.png'), auto;
  --cyan:#29dfeb;
  --slime:#80ffc0;
  --dark:#0d1217;
  --grey:#1a242e;
}

* {
  padding:0;
  margin:0;
  cursor:var(--cur-main);
}

body {
  background-color:black;
  background-image:url('/imgs/mcbg.png');
  background-size:repeat;
  color:white;
  width:100vw;
  height:100vh;
  font-family:'Minecraftia';
}

#page {
  position:absolute;
  width:100vw;
  height:100vh;
  overflow-y:auto;
}

#main {
  margin:30px auto;
  display:flex;
  width:1100px;
  background-color:var(--dark);
  border:1px solid var(--cyan);
  text-align:justify;
  align-items:center;
  justify-content:center;
}

#mbox {
  display:block;
}





#header {
  width:100%;
  height:auto;
  border-bottom:1px solid var(--cyan);
}
.logo {
  margin:20px 0;
}
.logo img {
  display:block;
  margin:auto;
}





.splash {
  width:100%;
  height:30px;
  background:linear-gradient(0deg, var(--slime), var(--cyan));
  color:var(--dark);
  border-bottom:1px solid var(--cyan);
  line-height:40px;
}
.msg {
  margin-right:200px;
}

#content {
  display:flex;
  background-color:var(--grey);
  align-items:stretch;
}





#menu {
  flex-basis:150px;
  flex-grow:0;
  flex-shrink:0;
  height:auto;
  background-color:var(--dark);
  font-size:12px;
  border-right:1px solid var(--cyan);
}
#menu .inner {
  margin:10px;
  line-height:17px;
}
#menu a {
  font-size:14px;
  font-family:Courier, sans-serif;
  color:var(--cyan);
  text-decoration:none;
  cursor:var(--cur-point);
}
#menu a::before {
  content:'> ';
  color:white;
}
#menu a:hover {
  color:white;
}

#container {
  width:100%;
  height:auto;
}
.index {
  margin:30px;
}

#sidebar {
  flex-basis:150px;
  flex-grow:0;
  flex-shrink:0;
  height:auto;
  background-color:var(--dark);
  font-size:12px;
  border-left:1px solid var(--cyan);
}
#sidebar .inner {
  margin:10px;
  line-height:17px;
  text-align:center;
}





h1 {
  font-family:'Minecrafter';
  font-size:40px;
  margin-bottom:20px;
  color:transparent;
  background:linear-gradient(0deg, var(--slime), var(--cyan));
  background-clip:text;
  filter:drop-shadow(5px 5px var(--dark));
}

h4 {
  font-size:12px;
  line-height:20px;
  margin-bottom:7px;
  width:100%;
  border-bottom:1px dashed white;
}

p {
  font-size:15px;
  line-height:25px;
}

b {
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:2px;
}