* {
  box-sizing: border-box;
}
/* Style the body */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 80px;
  text-align: center;
  background-image: url("/bilder/header_1280x290.jpg");
  background-size: cover;
  background-position: 50% 0;
  color: floralwhite;
}

/* Increase the font size of the heading */
.header h1 {
  font-family: 'Yeseva One', cursive;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  font-size: 40px;
}

.header p {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: floralwhite;
}

/* Style the navigation bar links */
.navbar a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    text-decoration: honeydew;
    border: 1px solid #4C4846;
    border-radius: 32px;
    margin: 20px 0 20px 20px;
    background-color: #4C4846;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
    background-color: #A29A96;
    color: #fff;
    border: 1px solid #A29A96;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: floralwhite;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: #807765;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

.footer h2 {
    font-size: 14px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}