.header {
  width: 100%;
  float: left;
  background-image: url("../media/header.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header_center {
  width: 100%;
  float: left;
  height: auto;
}

.header_logo_image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 200px;
  height: auto;
}

.header_navigation {
  width: 100%;
  
  display: flex;
  flex-flow: wrap;
  flex-direction: row-reverse;
  
	/*Flex for Internet Explorer*/
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-direction: row-reverse;  
  
  padding: 0px;
  margin:0;
  top: 0;
  left: 0;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  border-radius: 5px 5px 0px 0px;
  position: relative;
}

.internalLink,h4 {
  flex: auto;
  flex-grow: 0;
  max-width: 8em;
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 14px;
  color: black;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.internalLink:hover {
  color: #ed0d46;
}

.socialMediaLink {
  flex: auto;
  flex-grow: 0;
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 14px;
  color: black;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.socialMediaImage {
  display: block;
  background-color: white;
  border-radius: 5px 5px 5px 5px;
  padding: 2px 2px 2px 2px;
  width:40px;
  height:auto;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .header_navigation,internalLink {padding-top: 15px;}
  .header_navigation,internalLink {font-size: 18px;}
}

/* Topbar: */
@media all and (max-width: 1000px) {
	.header {
  background-image: url("../media/headerSmall.png");
    background-size: cover;
}	
}

/* Fullsize bar: */
@media all and (max-width: 600px) {
.header {
  background-image: url("../media/headerMini.png");
    background-size: cover;
    margin-top: 40px;
}	
	
}