.wrapper {
  display: flex;  
  flex-flow: row wrap;
  text-align: center;
}

.wrapper > * {
  padding: 10px;
  flex: 1 100%;
}

.header {
  background: transparent;
}

.header h1 {
	font-family: 'Caveat', cursive;
	font-size:60px;
	text-align:center;
	font-weight:normal;
	color:black;
}
.header .tag {
	font-family:Muli;
	font-size:12px;
	text-align:center;
	font-weight:normal;
	margin-top:-20px;
	color:#999;
	letter-spacing:5px;
	margin-bottom:50px;
}

.lower {
	background:transparent;
}
.lower .copyright {
	margin-top:10px;
	text-align:center;
	text-decoration:none;
	color:#999;
	font-family:Muli;
	font-size:12px;
}
.lower img {
	vertical-align:middle;
	padding-left:10px;
}

.main {
	text-align:center;
	background: transparent;
}
.main h3 {
	font-family:Muli;
	font-size:3vw;
	font-weight:normal;
	text-align:center;
	color:#333;
}

.about {
	background: transparent;
}
.about h4 {
	font-family: 'Caveat', cursive;
	font-size:2vw;
	font-weight:normal;
	text-align:left;
	color:#333;
	margin-bottom:-10px;
}
.about p {
	font-family:Muli;
	margin:0 auto;
	width:65%;
	font-size:2vw;
	font-weight:normal;
	text-align:center;
	color:#333;
	margin-top:20px;
	margin-bottom:20px;
}
.about img {
	object-fit:cover;
	height:220px;
	border-radius:50%;
	width:220px;
	vertical-align:middle;
	margin-bottom:0;
	margin-top:20px;;
	max-width:100%;
	margin-right:auto;
	margin-left:auto;
}
.about hr {
	border-top:1px solid #900;
}

.news {
	text-align:center;
	background: transparent;
}
.news h2 {
	font-family:Muli;
	font-size:3vw;
	font-weight:normal;
	text-align:center;
	color:#FFF;
}
.news p {
	font-family:Muli;
	font-size:14px;
	font-weight:normal;
	text-align:center;
	color:#FFF;
	text-shadow: 0 0 3px #000;
}	
.aside-1 {
	background:transparent;
}
.aside-1 img {
  border-radius: 5px;
  max-width: 100%;
  height:auto;
}

.aside-2 {
	background:transparent;
}
.aside-2 h2 {
	font-family: 'Caveat', cursive;
	font-size:4vw;
	font-weight:bold;
	color: #000;
	margin-top:0;
}
.aside-2 span {
	font-family:Muli;
	font-size:2vw;
	font-weight:normal;
	text-align:center;
	color: #000;
	padding:5px;
	margin-top:0;
}
@media all and (min-width: 600px) {
  .aside { flex: 1 0 0; }
}

@media all and (min-width: 800px) {
  .aside-1 { order: 1; } 
  .aside-2 { order: 2; }
  .main    { order: 3; }
  .news    { order: 4; }
  .lower  { order: 5; }
}

body {
  padding: 2em; 
}
					
					
					
					/*  TOP NAVIGATION ONLY   */
#nav ul {
	list-style: none;
	width: 500px;
	margin:0 auto;
}
#nav li a {
	float:left;
	display:block;
	margin-left:25px;
	line-height:25px;
	text-decoration: none;
	font-family:Muli;
	font-size:14px;
	font-weight:bold;
	color:#272425;
}

#nav li a:hover {
	color: #900;
	display: -moz-box;
	display: box;
	-moz-box-flex: 1;
	-webkit-box-flex: 1;
	text-decoration:none;
}

