* {
  margin: 0;
  padding: 0;
}

body {
  text-rendering: geometricPrecision;
  height: 100%;
  background: url(/assets/images/background.svg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: "Lava", serif;
  font-style: Normal;
  font-weight: 400;
  font-stretch: normal;
}

body.not-found {
  background: url(/assets/images/background.svg) no-repeat center center;
  background-color: rgba(0, 0, 0, 1);
  background-size: cover;
}

body.not-found .header img {
  margin: 0;
}

.logo {
  background: url(/assets/images/logo.svg) no-repeat center center;
  margin-top: 50px;
  height: 200px;
  width: 100%;
}

img.not-found {
  height: 40%;
  margin: 50px auto 0;
  display: block;
}

.header {
  height: 100px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 100px;
  font-weight: 700;
  font-size: 25px;
  margin-top: -25px;
}

.cookie-notification {
  line-height: 1.5rem;
  font-family: "Lava", serif;
  font-style: Normal;
  font-weight: 400;
  height: 25px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 15px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.cookie-notification.hidden {
  position: relative;
  top: -50px;
}

.cookie-notification a {
  color: #fff;
  font-style: italic;
  font-weight: bold;
}

.header ul {
  float: right;
  margin-right: 50px;
}

.header li {
  margin: 0 20px 0 20px;
  display: inline;
}

.header img {
  margin: 20px 0 0 30px;
  height: 70px;
  z-index: -1;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
  height: 50px;
  color: #bcf5bc;
  line-height: 50px;
  text-align: center;
  font-weight: 400;
  font-size: 10px;
  font-weight: 800px;
}

.footer p {
  position:absolute;
  text-align:center;
  width: 50%;
  margin-left:25%;
  font-size:12px;
}
.footer .social a{
  display:block;
  width: 100%;
  height: 100%;
}
.footer .social .icon{
  float:right;
  width:30px;
  height: 30px;
  margin-right: 20px;
  margin-top: 10px;
  opacity:.8;
  transition: opacity .3s ease;
  cursor:pointer;
}
.footer .social .icon:hover{
  opacity:1;
}
.footer .social .icon.twitter{
  margin-top:13px;
  background:url("/assets/images/twitter.svg") no-repeat;
  background-size:100% auto;
  color:white;
}
.footer .social .icon.github{
  background:url("/assets/images/github.svg") no-repeat;
  background-size:100% auto;
  margin-right: 10px;
  color:white;
}

.header a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  font-family: "Lava", serif;
  font-style: Normal;
  font-stretch: normal;
}

.header a.active, .header a:hover {
  color: #fff;
}

.headline, .not-found-message {
  margin-top:30px;
  text-align:center;
  color: #fff;
  padding: 0 40px;
  font-size:40px;
  line-height: 1.3;
  font-family: "Irma Text", sans-serif;
  font-style: Normal;
  font-weight: 400;
  font-stretch: normal;
}
.not-found-message {
  margin-top: 10px;
  font-family: "Irma Text", sans-serif;
  font-style: Normal;
  font-weight: 400;
  font-stretch: normal;
}

@media only screen and (max-width: 500px) {
  h2.not-found-message {
    display: none;
  }

  .headline {
    font-size: 20px;
    margin-top: 0;
  }

  .header img {
    display: none;
  }

  .header li {
    margin: 10px;
  }

  .header ul {
    margin: 0;
    text-align: center;
    width: 100%;
  }

  p, ul, ol, dl {
    font-size: 0.95em;
    margin: 0 0 2.5rem 0;
  }

  .cookie-notification {
    height: 50px;
  }
}

.small-logo {
  position: relative;
  float: left;
  margin: 20px 0 0 30px;
}

.small-logo img {
  width: 75px;
  height: 70px;
  position:absolute;
  left:0;
  -webkit-transition: opacity  0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.small-logo img.top:hover {
  opacity: 0;
}

.small-logo img.bottom {
  opacity: 0;
}

.small-logo img.bottom:hover {
  opacity: 1;
}
