html {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  height: 100%;
}

body {
  background-color: rgb(225, 230, 235);
  margin: 0;
  height: 100%;
}

.flex {
  flex-grow: 1;
}

.container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.topbar {
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.topbar a {
  text-decoration: none;
  font-size: 2.3rem;
  display: block;
  color: #be0028;
  font-weight: bold;
}

.topbar img {
  margin: 10px; 
}

#navtoggle {
  display: none;
}

.menu {
  display: flex;
  background: #2d3c47;
}

.menu div {
  display: flex;
}

.menu a {
  text-decoration: none;
  color: #eee;
  display: inline-block;
  padding: 13px;
}

.menu a:hover {
  background: #4d5c67;
}

.menu a.active {
  background: #fff;
  color: #333333;
}

.menu i {
  border-left: 1px solid #999;
}

.content {
  background: #fff;
  display: flex;
  min-height: 400px;
  flex-grow: 1;
}

.content .image {
  max-width: 400px;
  min-width: 400px;
}
.content img {
  display: block;
  width: 100%;
}

.content .parken {
    max-width: 250px;
    min-width: 250px;
    padding: 15px;
}

h1 {
  margin: 0;
  font-weight: normal;
  color: #be0028;
}

h2 {
  font-size: 1.2rem;
}

.article {
  padding: 25px;
  flex-grow: 1;
}

.article p {
  line-height: 1.5rem;
}

a {
  color: #be0028;
}

.alert {
  color: #be0028;  
}

form {
  width: 70%;
}

form input {
  padding: 5px;
}

form input[type='text'], textarea {
  margin-top: 3px;
  display: block;
  width: 100%;
}

form button {
  background-color: #be0028;
  border:0;
  color: white;
  font-weight: bold;
  padding: 15px;
}

.optional {
  display: none;
}

@media only screen and (max-width: 980px) {
  .container {
    min-height: 100%;
  }
  .topbar {
    margin: 0;
  }
  .topbar a {
    margin: 1.5rem 0 1.5rem 25px;
    font-size: 1.15rem;
  }
  #navtoggle {
    display:  block;
    cursor: pointer;
    height: 1.8rem;
    margin: 1.5rem 25px 1.5rem 0;
  }
  .content {
    flex-direction: column;
  }
  .content .image {
    max-width: 100%;
  }
  .article h1 {
    font-size: 1.6rem;
  }
  .menu {
    display: none;
    flex-direction: column;
  }
  .menu div {
    flex-direction: column;
  }
  .open .menu {
    display: flex;
  }
  .open .content {
    display: none;
  }
  form {
    width: 100%;
  }
}

