/* Importing fonts: IBM Plex Serif, Roboto Mono, Source Code Pro */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Serif", sans-serif;
}

nav {
    height: 70px;
    background: rgb(20, 20, 20);
    color: rgb(220, 220, 220);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.nav-items, .overview, .account {
    display: flex;
}

.overview {
    margin-right: 4rem;
}

.nav-title h2 {
    /* text-decoration: overline; */
    font-style: italic;
    color: rgb(193, 119, 253);
    cursor: pointer;
    margin: 0 0.5rem;
  }
  nav li {
    list-style: none;
    margin: 0 0.5rem;
  }
  nav a {
    text-decoration: none;
    color: rgb(220, 220, 220);
  }
  nav a:hover {
    color: rgb(199, 147, 241);
  }
  nav a::after {
    content: "";
    display: block;
    height: 3px;
    background: rgb(199, 147, 241);
    width: 0%;
    transition: all ease-in-out 150ms;
  }
  nav a:hover::after {
    width: 100%;
  }
  