html, body {
  height: 100%;
}

@font-face {
    font-family: Comfortaa-R;
    src: url(Comfortaa.ttf);
    font-weight: 200;
}

@font-face {
    font-family: Comfortaa-B;
    src: url(Comfortaa.ttf);
    font-weight: 900;
}

@font-face {
    font-family: RobotoSlab;
    src: url(RobotoSlab.ttf);
    font-weight: 300;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 100%;
  font-family: RobotoSlab;
}

/* Basic */
body { 
  font-size: 25px;
  background-color: #fff;
  color: #000;

}

a:link {
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #000;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

/* Layout */

main, header {
  display: table;
  max-width: 700px;
  width: 100%;
  padding: 10px;
  margin: 50px auto;
}

.content {
  display: table-cell;
  width: 50%;
  vertical-align: bottom;
  text-align: left;
}

.info {
  display: table-cell;
  width: 50%;  
  text-align: right;
}

/* Special */

.sub-title {
  font-size: 40px;
  font-family: Comfortaa-B;
  line-height: 45px;
  text-transform: uppercase;
}

.sub-type {
  font-size: 18px;
  font-family: Comfortaa-R;
  line-height: 15px;
  font-style: italic;
  color: #f1f1f1;
}

div.source, .source a{
	margin: 50px auto;
	font-size: 10px;
}

ol, li {
  font-weight: normal;
  margin-bottom: 10px;
}

.rules {
  line-height: 25px;
  font-style: italic;
}

.hidden {
  display: none;
}

.links {
	text-decoration: underline !important;
}

/* Navigation */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: black;
}

.mehr-status {
  display: none;
}
.mehr-status:checked ~ .mehr-box .mehr-zeigen {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
  margin-bottom: 20px;
}
.mehr-zeigen {
  opacity: 0;
  transition: .25s ease;
  font-style: italic;
  max-height: 0;
  font-size: 0;
  margin-bottom: 0;
}
.mehr-status ~ .mehr-los:before {
  content: 'Mehr? Immer!';
}
.mehr-status:checked ~ .mehr-los:before {
  content: 'Weniger? Immer!';
}
.mehr-los {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
  margin-bottom: 20px;
}

/* Media Queries */

@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 0px 0 0 0;
  }
  
  .content, blockquote {  
    display: inline;
    margin: 0 auto;
    padding-top: 0px;
    vertical-align: baseline;
  }

  blockquote {
    width: 150px;
    margin: 15px auto;
    font-size: 16px;
    line-height: 21px;
    background-color: transparent;
  }

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  html, body, .container {
    height: auto;
  }
}