#navbar {
  height: 70px;
	display: flex;
    flex-direction: row;
	justify-content: center;
	align-items: center;
}

.nav {
	text-align: center;
	vertical-align: middle;
	font-size: 1.5em;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

#footer a, #navbar a {
	text-decoration: none;
	color: black;
}

p, h1, h2, h3, h4, li, a, #logout {
	font-family: 'Poppins', sans-serif;
}

h1 {
    margin: 0;
}

body {
    margin: 0;
}

#content {
	width: auto;
	margin-left: 1em;
	margin-right: 1em;
}

@media (min-width: 800px) {
   #content {
		margin: 0 auto;
		width: 75%;
	}
}

@media (min-width: 1200px) {
   #navbar {
	   justify-content: flex-end;
	}
}

.dropdown {
    position: relative;
}

.dropdown > a:not(:first-child) {
    display: none;
}

.dropdown:hover > a:not(:first-child) {
    display: block;
    position: absolute;
    width: 100%;
}

html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 100%;

  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -50px;
}

.push {
  height: 50px;
}

#footer {
	width: 75%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
    height: 50px;
	margin: 0 auto;
}

#logout {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0px;
}

#footer a, #logout {
	padding-left: 10px;
	font-size: 16px;
}
