.nav-text {
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}

nav {
  display: flex;
  /* flex-direction: row; */
  background: #333333;
  justify-content: space-between;
  align-items: center;
}

.nav-homeName {
  font-size: 40px;
  color: white;
  font-weight: bold;
  padding: 40px 60px 40px 60px;
}

.nav-homeName:hover {
  color: darkgray;
}

.nav-items {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  gap: 40px;
}

.nav-item {
  color: white;
}

.nav-item:hover {
  color: darkgray;
}
