header {
    position: fixed;
/*    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.15);*/
    width: 100%;
    height: 60px;
    z-index: 1;
    top: 0;
    left: 0;
/*    background-color: #ffffff00;*/
    background-color: #2a603a;
    font-family: "arial", sans-serif;
    color: #eee
}

header .container {
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-direction: row;
  display: flex;
  width: 95%;
  max-width: unset;
}

header .container img{
    max-width: 100%;
    max-height: 60px;
    margin-right: 6px;
    margin-left: 10px;
}

header .container a {
    display: flex;
    color: #fff;
}

header button {
    color: #eee;
    background-color: #222;
    height: 35px;
    border: none;
    border-radius: 3px;
    margin-right: 10px;
}

@media screen and (min-width: 576px) {
    #site-name {
        display: block;
    }
    #site-initials {
        display: none;
    }
}

@media print {
	header {
        	display: none;
    	}
}