@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital@1&display=swap');
{
  box-sizing: border-box;
}

body {
  font-family: 'Crimson Text', serif;
}
/* Style the header */
header {
  background-image: url(./img/blau.jpg);
  padding: 25px;
  text-align: center;
  font-size: 35px;
  color: black;
  font-family: 'Crimson Text', serif;
}
/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
}

/* Style the navigation menu */
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #ccc;
  padding: 5px;
  text-align: center;
  font-size: 25px;
  font-family: 'Crimson Text', serif;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 5px;
}

/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: lightblue;
  padding: 10px;
  font-size: 25px;
}

/* Style the footer */
footer {
  background-image: url(./img/blau.jpg);
  padding: 10px;
  text-align: center;
  color: black;
  font-size: 40px;
}

.bilder1{
  height: 250px;
  -align: center;
}
.bilder2{
	height: 200px;
	width: 350px;
	-aglin: center;
}	
/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }