nav {
  display: flex;
  height: 66px;
  background-color: rgb(204, 225, 252);
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: Big Shoulders;
  font-size: 18px;
  letter-spacing: 1px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 2px #75757533;
  z-index: 100;
}

.nav-logo, .nav-name {
  cursor: pointer;
}

nav div {
  height: 66px;
  display: flex;
}

.nav-middle-section a,
.nav-right-section a {
  margin-top: 23px;
  margin-bottom: 0px;
  transition: text-shadow 0.5s;
  position: relative;
  text-decoration: none;
  color: rgb(21, 34, 70);
}


.nav-middle-section p:hover,
.nav-right-section p:hover {
  text-shadow: 0.5px 0.5px 40px black;
  border-bottom: 2px solid rgb(24, 24, 133);
  cursor: pointer;
}

.nav-left-section {
  display: flex;
  align-items: center;
  height: 66px;
  justify-content: end;
  flex: 2;
}

.nav-middle-section {
  flex: 5;
  display: flex;
  justify-content: stretch;
}

.nav-home-ctner,
.nav-services-ctner,
.nav-about-ctner,
.nav-portfolio-ctner,
.nav-spacer-ctner {
  padding-right: 25px;
}

.nav-home-ctner {
  padding-left: 25px;
}

.nav-services-ctner {
  text-wrap: nowrap;
}

.nav-spacer-ctner {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-spacer-left,
.nav-spacer-right {
  height: 35px;
  width: 1px;
  background-color: grey;
}

.nav-spacer-middle {
  height: 1px;
  background-color: grey;
  width: 100%;
}



.nav-right-section {
  flex: 2;
  text-wrap: nowrap;
}


.nav-left-section img {
  width: 35px;
  height: 35px;

}

.nav-left-section p {
  font-weight: bold;
  font-size: 20px;
  font-family: Oswald;
  font-weight: 500;
}

.nav-about-ctner {
  text-wrap: nowrap;
}

