.top-nav {
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid yellow; */

  .container {
    max-width: var(--content-max-width);
    padding: var(--content-gutters);

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }

  .name {
    /* font-size: 1.5rem; */
    /* font-weight: bold; */
  }

  .links {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 15px;
  }
}
