/* ---- reset ---- */
body {
	margin:0;
	font:normal 75% Arial, Helvetica, sans-serif;
}
canvas {
	display: block;
	vertical-align: bottom;
}
/* ---- particles.js container ---- */
#particles-container {
	position:absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(141deg, #764ba2 0%, #09203f 75%);
}
#menu {
	position: fixed; 
	top: 0;
	bottom: 0;
	left: 0;
	width: 33%;
	height: 100%;
}
.menu-outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.menu-middle {
  display: table-cell;
  vertical-align: middle;
}

.menu-inner {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  /*whatever width you want*/
}
.menu-inner>a {
		padding: 10px;
		left: 0;
		right: 0;
		width: 100%;
		word-wrap: break-word;
    text-decoration: none;
	  text-align: center;
    font-size: 18px;
		font-weight: 550;
    color: #fff;
    display: block;
		transition: .7s;
}
.menu-inner>a:hover {
    color: #000;
		background-color: rgba(255,255,255,0.4);
}
.menu-inner>a.active, .menu-inner>a.active:hover {
	color: #e2b546
}

#main {
	position: absolute;
	left: 33%;
	right: 20%;
	padding: 25px 35px;
}
#main>section {
	visibility: hidden;
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: 2s;
}
#main>section:target {
	visibility: visible;
	opacity: 1;
	height: auto;
}
h1 {
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	background-image: linear-gradient(30deg, #16d6d9 0%, #96cc29 35%, #e58d00 75%);
	font-weight: 900
}
p {
	font-size: 1rem;
	text-align: justify;
}