header > .container, #header-spacer {
  height: 64px; }

header {
  background-color: white;
  box-shadow: 0px 14px 25px rgba(0, 0, 0, .05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; }
  header #logo {
    height: 40px;
    width: auto; }
  header ul#menu {
    margin: 0;
    padding: 0;
    list-style: none; }
    header ul#menu li {
      padding-left: 10px; }
      header ul#menu li:not(:last-child):after {
        content: "|";
        margin-left: 10px; }
  header #contact-button {
    padding: 8px 15px;
    border-radius: 5px;
    border: solid 1px black;
    margin-left: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s; }
    header #contact-button:hover {
      background-color: black;
      color: white; }

@media screen and (max-width: 768px) {
  header ul#menu {
    display: none; } }
