@charset "utf-8";
/* CSS Document */
body { 
		  margin:auto;
		  font-family: Klinic Slab Medium;
		  
}
	  .header {
		  overflow: hidden;
		  background-color: #cf1c44;
		  z-index:1000;
}
.header a {
  background-color: black; 
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 35px 2px;
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);border-radius: 8px;
  z-index:1000;
}
.logo{
		  position:absolute;
		  width: 200px;
		  height: 200px;
		  margin-top: -110px;
		  margin-left: 50px;
		  z-index:1000;
	  }
.header a.active{
	background-color: #0B9446;
	color: white;
}
.header-right{
	float: right;
}
@media screen and (max-width:500px) {
	.header a{
		float: none;
		display: block;
		text-align: left;
	}
	.header-right {
		float: none;
	}
	
