body {
  font-family: 'Open Sans';
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Roboto';
}

ul {
  list-style-position: inside;
  padding-left: 0;
}

* {
  box-sizing: border-box;
}

/* Container for flexboxes */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Linke Spalte */
.column-left{
  flex: 50%;
  padding-left: 20%;
  padding-top: 10%;
}

/* Rechte Spalte */
.column-right{
  flex: 50%;
  padding-left: 80px;
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
  .column {
    flex: 100%;
  }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #333333;
   color: white;
   text-align: center;
}

a:link {
   color: #eec71b;
   text-decoration: none;
}

a:hover, a:visited {
   color: #eec71b;
   text-decoration: underline;
}
