body {
  background: #e6e6e6;
  padding:    0 8vw;
  font-family:  "Alegreya Sans SC", "Century Gothic", "Copperplate", "Courier New", "Helvetica", sans-seri
}

#header_box {
	display: flex;
	align-items: center;
	border-bottom: solid;
	padding: 1vw;
	margin:auto;
}

#header_box img {
	animation: fadeIn 8s, rotation 30s infinite linear;
	/*animation: rotation 10s;*/
}

@keyframes fadeIn {
	0% 		{ opacity: 0; }
	100% 	{ opacity: 1; }
}

@keyframes rotation {
  from {
    transform: rotatey(0deg) rotatez(0deg); /*Horizontal & Z axes*/
    /*transform: rotatex(359deg) rotatey(0deg) rotatez(0deg); /*All 3 axes*/
  }
  to {
    transform: rotatey(359deg) rotatez(359deg);
    /*transform: rotatex(0deg) rotatey(359deg) rotatez(359deg);*/
  }
}

#header_text_box {
	padding-left: 3vw;
	align: top;
	text-decoration: none;
}

#header_text_box h1 {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
}

#header_text_box div {
	margin-top: 0;
	padding-left: 0.2vw;
}

#header_text_box h2 {
	margin-top: 0;
	padding-left: 0.1vw;
}

#header_text_box a {
	text-decoration: none;
}

#menu {
	display: hidden;
}

#menu ul {
	list-style: none;
	padding: none;
	margin: none;
}

#menu li {
	display: inline;
}

#main {
	display: flex;
	flex-wrap: wrap;
}

#left-sidebar {
	position: relative;
	border-right: solid;
	padding: 2vw;
	padding-right: 4vw;
	padding-top: 0.2vw;
	margin-top: 2vw;
}

#right-sidebar {
	position: relative;
	flex: 1;
	margin-top: 1vw;
}

#right-sidebar h2 {
	margin-left: 6vw;
}

#right-sidebar ul {
	margin-left: 3vw;
}
