* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  overflow: hidden;
  display:flex;
  color:#FFFFFF;
   background-color: #04AA6D; 
   padding: 20px 10px;
}

.header a {
  float: left;
  color: #FFFFFF;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
  margin:10px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
  margin-right:10px;
}

.header a:hover {
  background-color: white;
  color: black;
    border-radius: 0px;

}

.header a.active {
  background-color: white;
  color: black;
  border-radius: 0px;
}

.header-right {
   flex-grow: 1;
}
.logged_in_user{
	display:inline;
}

@media screen and (max-width: 500px) {
	.header {
  overflow: hidden;
  color:#FFFFFF;
  background-color: #04AA6D;
  margin: 20px 10px;
}
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
  }
}
a.logo {
  float: right;
}
.right-section{
	display:flex;
	justify-content:center;
	align-items:center;
}