.navbar {
  background-color: #010d10;
  display: flex;
  font-family: sans-serif;
  font-size: 1.2rem;
  color: white;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-link {
  padding-right: 15px;
}

.navbar-link a.nav-link {
  color:white;
  text-decoration: none;
  
}

.navbar-link a.nav-link:hover {
  color:rgb(146, 114, 114);
  text-decoration: none;
}

.navbar-items {
  display: flex;
  align-self: center;
}

.navbar-items-left {
  justify-content: flex-start;
}

.navbar-items-right {
  margin-left:auto;
  justify-content: flex-end;
}

.navbar-link-toggle {
  display: none;
}

@media only screen and (max-width: 768px) {

  .navbar-link {
    margin-bottom: 5px;
  }

  .navbar-items,
  .navbar {
    flex-direction: column;
  }

  .navbar-items {
    display:none;
  }

  .navbar-items {
    align-self:flex-start;
    margin-left: 5px;
  }

  .navbar-items-right {
    margin-left: 5px;
    margin-bottom: 5px;
  }

  .navbar-toggleShow {
    display: flex;
  }

  .navbar-link-toggle {
    display: flex;
    align-self: flex-end;
    font-size: 30px;
    display: initial;
    position: absolute;
    top:25px;
    cursor: pointer;
   } 
}