@charset "utf-8";
/* CSS Document */

.staatliches-regular {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-sysgate {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.info{
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
* {
  box-sizing: border-box;
}
/* Style the header */
header {
  background-color: #666;
  padding: 30px;
  text-align: center;
  font-size: 35px;
  font-family: "Staatliches", sans-serif;
  color: white;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  width: 30%;
  min-height: 4em; /* only for demonstration, should be removed */
  background: #ccc;
  padding: 20px;
  font-family: "Montserrat", sans-serif;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  float: left;
  padding: 20px;
  width: 70%;
  background-color: #f1f1f1;
 /* height: 300px; /* only for demonstration, should be removed */
  font-family: "Montserrat", sans-serif;	
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  width: 100%;
  background-color: #777;
  padding: 10px;
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}