nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: white;
  z-index: 100;
  box-shadow: 2px 1px 1px #3B82F6;

}


.lastName {
  color: #E5E7EB;
}

h2 a {
  text-decoration: none;
  color: #3B82F6;
}
.nav-fName {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}

.navigatinLinks a {
 text-decoration: none;
 
}

.navigatinLinks{
 list-style: none;
 display: flex;
}

.navigatinLinks a {
  margin-left: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #111827;
}

.navigatinLinks a:hover {
  color: #3B82F6;
}

.div-nav {
  display: flex;
}

.button-nav {
  cursor: pointer;
  border-radius: 3px;
  border: none;
  color: #E5E7EB;
  padding: 8px 10px 8px 10px;
  background: linear-gradient(135deg, #3B82F6 0%, #292b29 100%);
}

.button-nav:hover {
  opacity: 0.7;
}



