.top-bar {
  background-color: #f0efea;
  color: #666;
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .container .left a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.top-bar .container .left a p {
  font-size: 17px;
  font-weight: 600;
  color: #666;
}
.top-bar img {
  height: 30px;
}
.top-bar p {
  justify-self: flex-end;
  margin: 0;
  padding: 0;
}
.top-bar p a,
.top-bar p a:active,
.top-bar p a:visited {
  margin-left: 12px;
  color: #666;
  text-decoration: none;
  line-height: 15px;
  font-size: 15px;
}
.top-bar p a:hover {
  text-decoration: underline;
}
/* Make it smaller */
@media only screen and (max-width: 900px) {
  .top-bar .container .left {
    display: none;
  }
}
/* Hide top-bar on phones */
@media only screen and (max-width: 500px) {
  .top-bar {
    display: none;
  }
}
