.NavMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.NavMenu .icon {
  display: none;
}

#TPage a{
  text-decoration: none;
  color: black;
}

#TPage {
  width: 100%;
  height: 10vh;
  background-color: rgb(255, 255, 255, 0);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#TPages {
  width: 100%;
  text-align: center;
  background-color: rgb(255, 255, 255, 0);
  height: 10vh;
  align-content: center;
  font-size: 2.2vh;
}

#TPages a {
  padding: 10px;
  font-weight: normal;
}

#TPages a:hover {
  font-weight: bold;
}

#TImg #logo {
  height: 7vh;
  width: auto;
  padding-left: 30px;
}

/* Responsive navigation menu (for mobile devices) */

@media screen and (max-width: 600px) {
  .NavMenu a:not(:first-child) {display: none;}
  .NavMenu a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .NavMenu.responsive {
      position: absolute;
      width: 100%;
  }
  .NavMenu.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .NavMenu.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}