:root {
  --blue: #2c4c5c;
  --gray: #b8bfc1;
  --yellow: #f3e308;
  --lightBlue: #6c8494;
  --yellowGreen: #9cac54;
  --lightGreen: #97cd97;
  --hackerGreen: #70ffaf;
  --teal: #a7f0dd;
  --white: #f4fcfb;
  --black: #000000;

  /*Margins*/
  --margin-PC: 3.5rem;
  --margin-Tablet: 2.5rem;
  --margin-Phone: 1.5rem;
  /*Breakpoints*/
  --BreakL: 1328px;
  --BreakM: 900px;
  --BreakS: 672px;
}
.Navbar {
  display: flex;
  position: sticky;
  z-index: 10;
  width: 100%;
  font-size: 16px;
  background: var(--blue);
  padding-top: 0.5rem;
  padding-bottom: 0.2rem;
}

.Navbar-Brand {
  font-size: 2rem;
  display: flex;
  z-index: 10;
  align-self: flex-start;
  text-decoration: none;
  position: relative;
  color: white;

  @media (min-width: 600px) {
    font-size: 2rem;
    margin-left: 1rem;
  }

  @media (min-width: 900px) {
    font-size: 3rem;
  }
  @media (min-width: 1328px) {
    font-size: 4rem;
    font-weight: 900;
  }
}

.Navbar-List {
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  list-style: none;
  gap: 0.75rem;
  margin-right: 1rem;
}

.NavBar-List-Item {
  font-size: 1rem;
  color: var(--yellow);

  @media (min-width: 900px) {
    font-size: 1.5rem;
  }
}

.Navbar-Brand:visited {
  color: var(--white);
}

.NavBar-List-Link {
  text-decoration: none;
}

span {
  color: var(--yellow);
}
