@charset "UTF-8";
/*  box sizing */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

body {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  /*font-family: Verdana, Helvetica, Arial, sans-serif;*/
  font-family: 'open_sansregular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

h2, p {
  margin-top: 0;
}

a {
  color: #a20000;
}

a:hover, a:focus {
  text-decoration: none;
}

li {
  margin-bottom: 5px;
}

.site-header {
  position: relative;
  height: 400px;
  background: url(lego-674881_1280.jpg) no-repeat 0 center;
  background-clip: border-box;
  background-size: cover;
}

h1 {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.75rem;
  margin: 0;
}

h1 a {
  text-decoration: none;
  color: inherit;
}

h1 a:hover, h1 a:focus {
  text-decoration: underline;
  color: #ddd;
}

@media only screen and (min-width: 470px) {
  h1 {
    font-size: 1.75rem;
    padding: 30px 0;
  }
}

@media only screen and (min-width: 600px) {
  h1 {
    font-size: -webkit-calc(1rem + 2vw);
    font-size: calc(1rem + 2vw);
    text-align: right;
    padding: 40px 10% 40px 40px;
  }
}

.site-header__logo {
  position: absolute;
  right: 40px;
  top: 20px;
}

.site-header__logo:hover, .site-header__logo:focus {
  opacity: 0.5;
}

.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.hint {
  padding: 10px;
  border: 5px solid #a20000;
  background-color: rgba(162, 0, 0, 0.25);
}

.hint p {
  margin-bottom: 0;
}

.hint p + .hint p {
  margin-top: 10px;
}

.nolist {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.teaser {
  padding: 30px;
  background-color: #eee;
  margin-bottom: 30px;
  position: relative;
}

.teaser--bordered {
  /*border: 2px solid #cecece;*/
  background-color: #fff;
}

.teaser--bordered:before, .teaser--bordered:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  /*bottom: -4px;
    right: -4px;*/
  background-color: #cecece;
}

.teaser--bordered:before {
  /*width: 2px;*/
  width: 3px;
  height: 80px;
}

.teaser--bordered:after {
  width: 80px;
  height: 3px;
  /*height: 2px;*/
}

.teaser--flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.teaser__image img {
  display: block;
  border: 3px solid #345F6F;
}

@media (min-width: 750px) {
  .teaser--flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .teaser__image {
    margin-left: 40px;
  }
}

pre.code {
  background: #333;
  white-space: pre;
  word-wrap: break-word;
  overflow: auto;
  border: 1px solid #292929;
  border-left: 20px solid #345F6F;
  padding: 10px 0;
}

pre.code code {
  font-family: "Monaco","Consolas","Andale Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
  display: block;
  margin: 0;
  padding: 10px 10px 10px 20px;
  overflow-x: auto;
  color: #ddd;
}

pre.code-css code {
  color: #91a7ff;
}

p code {
  background-color: #333;
  color: #fff;
  display: inline-block;
  padding: 0 5px;
}

.before-iframe {
  margin-bottom: 20px;
}

.iframe-wrapper {
  position: relative;
}

.iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: auto;
}

.iframe-wrapper--16-9 iframe {
  height: 56.25vw;
  max-width: 100vw;
}

.site-footer {
  padding: 10px 40px;
  background-color: #5FA9C4;
  margin: 40px auto 0 auto;
}

.site-footer__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.site-footer__list li {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.site-footer__list li:last-of-type {
  margin-right: 0;
}

.site-footer__list a {
  color: #000;
}

@media print {
  /**
	* @section basic layout preparation
	*/
  /* (en) change font size unit to [pt] - avoids problems with [px] in Gecko based browsers  	*/
  /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit [px] in Gecko-Browsern vermeiden */
  body {
    font-size: 12pt;
    padding: 0 5px;
    color: #000 !important;
    background-color: #fff !important;
  }
  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  nav,
  .site-footer,
  .speakerdeck-iframe {
    display: none;
  }
  /*------------------------------------------------------------------------------------------------------*/
  /* (en) Avoid page breaks right after headings */
  /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
  h1, h2, h3, h4, h5, h6 {
    font-size: 18pt;
    page-break-after: avoid;
    color: #000 !important;
  }
  /*------------------------------------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------------------------------------*/
}
/*# sourceMappingURL=styles-neu.css.map */