
header {
  padding-top: 24px;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif;;
}

header {
    display: flex;
    justify-content: space-around;
}

header h1 {
    font-size: 24px;
    line-height: 24px;
    font-weight: normal;
}
header h1 a {
    text-decoration: none;
}
header h3 {
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
}

header a {
  text-decoration: none;
}

.logo, .menu {
    margin-left: 20%;
    flex: 1;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-item {
    margin: 10px;
}

.menu-item:hover, .menu-item a:hover {
    color: #ff6600;
    text-decoration-line: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-menu {
  display: none;
  position: absolute;
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
  min-width: 12ch;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-menu a, #logout-button {
  color: black;
  text-decoration: none;
  display: block;
  padding: 10px 12px;
  background: #fff;
  border: none;
}

/* Change color of dropdown links on hover */
.dropdown-menu a:hover {
    color: #ff6600;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {display: block;}

#logout-button:hover {
    cursor: pointer;
    background-color: #ddd;
}

@media (max-width: 767px) {
.logo, .menu {
	margin-left: 5%;
}
}