html, body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  align-self: top-left;

  font-family: 'OpenSans', sans-serif;

  background-color: lightyellow;
}

.dropdownmenu ul, .dropdownmenu li {
	margin: 0;
	padding: 0;
}
.dropdownmenu ul {
	background: gray;
	list-style: none;
	width: 100%;
}
.dropdownmenu li {
	float: left;
	position: relative;
	width:auto;
}
.dropdownmenu a {
	background: #30A6E6;
	color: #FFFFFF;
	display: block;
	font: bold 12px/20px sans-serif;
	padding: 10px 25px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
}
.dropdownmenu li:hover a {
	background: #000000;
}
#submenu {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 35px;
	visibility: hidden;
	z-index: 1;
}
li:hover ul#submenu {
	opacity: 1;
	top: 40px;	/* adjust this as per top nav padding top & bottom comes */
	visibility: visible;
}
#submenu li {
	float: none;
	width: 100%;
}
#submenu a:hover {
	background: #DF4B05;
}
#submenu a {
	background-color:#000000;
}

div li:hover {
	color: red;
}

div li {
	padding-left: 10px;
}

.name {
	font-family: 'Roboto', sans-serif;
	margin-bottom: 2px;
}

.wrapper {

  vertical-align: top;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  max-height: 30%;
  align-items: top;
}

.bottom {

	max-height: 70%;

}

.menu-bar {
	background: #f9f9f9;
	border: dotted;
	border-radius: 50px;

}



.left, .right {

  align-items: top;
  margin: 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left {
  align-items: center;
  justify-content: center;
  max-width: 30%;
  padding-right: 20px;

}

.right {
	max-width: 100%;

}

.profile-picture {
  border-radius: 50%;
}

.social-links {
	list-style: none;
	padding-left: 0px;
	font-size: 18px;
}

.social-links li {
	display: inline-block;
	margin-right: 8px;
}

.social-links a {
	text-decoration: none;
	padding: 4px;
}

.social-links a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.page-links {
	list-style: none;
	padding-left: 0px;
	font-size: 18px;
}

.page-links li {
	display: inline-block;
	margin-right: 8px;
}

.page-links a {
	text-decoration: none;
	padding: 4px;
}

.page-links a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}