*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,html{
  height: 100%;
}
body{
  background-color: #2d2d2f;
  color: #ccc;
  font-family: Verdana, Tahoma, Arial, sans-serif;
  font-size: 8pt; 
}

#mikro{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#mikro h1{
  font-size: 1.5em;
  letter-spacing: 5px;
  text-shadow: 0 0 3px #000, 0 0 12px #000;
  transition: all 0.3s ease-in-out;
  cursor: default;
  color: #ccc;
}
#mikro h1:hover{
  color: #fff;  
  cursor: default;
}
a{
  text-decoration: none;
  color: #ccc;
  transition: all 0.3s;
}
a:hover{
  color: #fff;
}
#labels{
 display: flex;
 margin: 10px 0;
 align-items: center;
 justify-content: center;
}
#labels div{
  margin: 0 5px;
}
#labels div:after{
  content: "·";
  margin-left: 10px;
}
#labels div:last-child:after{
  content: "";
}

#links{
 display: flex;
 margin-bottom: 10px;
 align-items: center;
 justify-content: center;
}
#links a{
}
#links a:after{
  content: "·";
  margin: 0 10px;
}
#links a:last-child:after{
  content: "";
}
