nav {
  max-width: 768px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

  .logo {
    vertical-align: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .actions {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 16px;
    margin-left: 0;

    a, button {
      user-select: none;
    }

    a {
      font-family: 'LoraBold', serif;
      font-size: 12px;
      line-height: 15px;
      color: var(--grey-900);
      text-decoration: none;
      margin-right: 8px;

      &:hover, &:focus {
        text-decoration: underline;
      }

      @media screen and (min-width: 768px) {
        font-size: 16px;
        margin-right: 24px;
      }
    }
  }
}
