html {
  background: #eee;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: white;
}

a {
  text-decoration: none;
  color: inherit;
}

a img {
  border: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  flex-wrap: wrap;
  white-space: pre;
  font-weight: 100;
  color: #555;
  background: white;
}

nav .spacer {
  display: flex;
  flex: 1;
}

label > input {
  margin-left: 8px;
}

@media (max-width: 800px) {
  label > input {
    margin-top: 8px;
  }
}

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

.tag {
  height: 24px;
  line-height: 24px;
  position: relative;
  font-size: 14px;
  display: inline-block;
  margin-left: 16px;
  margin-bottom: 4px;
  padding: 0 10px 0 12px;
  background: #0089e0;
  color: #fff;
  text-decoration: none;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  opacity: 0.9;
}

.tag:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent #0089e0 transparent transparent;
  border-style: solid;
  border-width: 12px 12px 12px 0;
}

.tag:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  box-shadow: -1px -1px 2px #004977;
}

.tag:hover {
  opacity: 1;
}
