﻿h1 {
	font-family: open sans, sans-serif;
	color: #1F2232;
	font-size: 30px;
	position: relative;
	top: 150px;
}
#h2 {
	width: 340px;
	height: 142px;
	position: relative;
	top: 200px;
}
 * {
	box-sizing: border-box;
	font-family: OPEN SANS, sans-serif;
	font-size: 14px;
	font weight: 500;
	color: white;
}
body {
	padding: 0;
	margin: 0;
	background: Gainsboro;
}
.menu {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0 3rem;
	background: #1F2232;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.menu a {
	margin: 0 1rem;
	text-decoration: none;
	padding: 1rem .5rem;
}
.dropdown {
	position: relative;
}
.dropdown ul {
	width: 150px;
	text-align: center;
	position: absolute;
	background: #373C58;
	padding: 0;
	list-style-type: none;
	box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.25);
	margin-top: 10px;
	border-radius: 7px;
	display: none;
}
.dropdown ul li {
	padding: .5rem;
}
.dropdown ul li a {
	width: 100%;
	height: 100%;
	display: inline-block;
	padding: 0;
	margin: 0;
}
.dropdown ul li:hover {
	background: #272B3F;
	border-radius: 7px;
}
.dropdown a:focus + ul,
.dropdown a:hover + ul,
.dropdown ul:hover {
	display: block;
}