* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Georgia, serif;
  margin: 0;
}

h2,h3,h4 {
  color: #1a466d;
}
p{
	color: #1a466d;
	font-size: 15px;
}
h5{
text-shadow: 2px 2px 5px #1a466d;
color: white;
}
/* Header/logo Title */
.header {
  padding: 80px;
  text-align: center;
  background-image: url("../bildes/fons.jpg");
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 50px;
  text-shadow: 2px 2px 5px #1a466d;
}
/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #1a466d;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}
/* 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: #A2BED8;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}
a:link, a:visited {
  background-color: #1a466d;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a:hover, a:active {
  background-color: #1a466d;
}

/* Fake image, just for this example */
.image {
  background-color: #A2BED8;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-image: url("../bildes/kaja.jpg");
}
.footer h5{
text-shadow: 2px 2px 5px #1a466d;
color: white;
}	
/* 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%;
  }
}