@import url(https://fonts.googleapis.com/css?family=Roboto:300);
@import url(https://fonts.googleapis.com/css?family=Neuton:200);
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column; }

main {
  padding-top: 90px;
  margin-bottom: 4rem; }

.container {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px; }
  .container--header {
    max-width: 800px; }

img {
  margin: 0;
  padding: 0;
  max-width: 100%; }

h1, h2, h3 {
  font-family: Georgia, Times, 'Times New Roman', serif;
  font-weight: 300;
  margin-top: 4rem;
  margin-bottom: 3rem;
  font-size: 36px; }

p {
  font-family: 'Neuton', Georgia, Times, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 200;
  letter-spacing: 0.3px;
  margin: 0;
  color: #494949; }
  p + p {
    margin-top: 1rem; }

.fleuron {
  margin: 4rem 0; }
  .fleuron svg {
    display: block;
    width: 40px;
    margin: 0 auto;
    fill: #fec200; }

a {
  color: inherit;
  text-decoration: none; }
  a.link {
    color: #daa700; }
    a.link:hover {
      color: #fec200; }

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #f6f6f6; }

.logo {
  display: block; }

.logo__image {
  width: 250px; }

nav {
  display: flex;
  align-items: center;
  margin-left: auto; }

.nav-link {
  font-family: 'Roboto', 'Franklin Gothic Medium', Tahoma, sans-serif;
  position: relative;
  padding: 12px;
  font-size: 17px;
  color: #676767; }
  .nav-link:hover {
    color: #fec200; }
    .nav-link:hover .nav-link-hover {
      opacity: 1; }
  .nav-link-hover {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 12px;
    margin-left: -6px;
    opacity: 0;
    fill: #fec200; }

.banner {
  margin-bottom: 2rem; }
  .banner--index {
    width: 660px;
    height: 330px;
    background-image: url("/images/content/banner/index.jpg"); }
    @media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) {
      .banner--index {
        background-image: url("/images/content/banner/index@2x.jpg");
        -webkit-background-size: 660px 330px; } }
  .banner--aufgabe {
    width: 660px;
    height: 330px;
    background-image: url("/images/content/banner/aufgabe.jpg"); }
    @media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) {
      .banner--aufgabe {
        background-image: url("/images/content/banner/aufgabe@2x.jpg");
        -webkit-background-size: 660px 330px; } }

.profile {
  display: flex;
  flex-direction: row; }
  .profile + .profile {
    margin-top: 4rem; }
  .profile__image {
    width: 120px;
    height: 120px;
    background-image: url("/images/content/profile/dieter.jpg");
    flex: 0 0 120px;
    margin-right: 2rem;
    border-radius: 10px; }
    @media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) {
      .profile__image {
        background-image: url("/images/content/profile/dieter@2x.jpg");
        -webkit-background-size: 120px 120px; } }
  .profile__name {
    font-weight: 400; }
  .profile__year {
    display: block;
    font-style: italic;
    font-size: 16px; }

.container.container--footer {
  justify-content: center; }

footer {
  margin-top: auto;
  padding: 10px 0;
  background-color: #f6f6f6; }
  footer p {
    text-align: center;
    font-size: 16px; }
