body {
  text-align: center;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #00b09b;
  /* fallback for old browsers */
  background: linear-gradient(to right,
      #cea347,
      #6d55a0);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.navbar {
  height: 60px;
  width: 90vw;
  margin: 0 auto;
  margin-top: 30px;
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
  display: block;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15),
    0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  z-index: 2;
  background: linear-gradient(to left, #cea347, #6d55a0)
}

.navbar .logo {
  /*text-transform: uppercase;*/
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 16pt;
}

.navbar .logo a {
  text-decoration: none;
  color: #090909;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 4em;
}

.navbar ul li {
  display: inline;
  text-decoration: none;
}

.navbar ul li a {
  padding: 0.25em 1em 0.25em 1em;
  color: #090909;
  text-decoration: none;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

.navbar a:hover {
  color: #bf810e;
  transition-duration: 0.3s;
}