.myNav {
  display: block;
  position: -webkit-sticky; /* Safari & IE */
  position: sticky;
  top: 0.6vw;
  z-index: 100000;
  margin-top: 4.2vw;
  padding-top: 0.3vw;
  padding-bottom: 2vw;
  font-size: 0.6vw;
  /*border: 3px solid greenyellow;*/
}

.linksNav {
  margin-left: 73%;
}

a:visited {
  text-decoration: none;
}
/*Home*/
.linkHome {
  color: orange;
  float: left;
  padding-right: 0.2vw;
  border-right: 0.06vw solid grey;
}

#underLine:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
#underLine::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.01vw;
  bottom: 0;
  left: 0;
  background-color: orange;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#underLine:hover::before {
  transform: scaleX(1);
}

/*ABOUT ME*/
.linkAboutMe {
  float: left;
  color: white;
  padding-left: 0.2vw;
  padding-right: 0.2vw;
  border-right: 0.05vw solid grey;
  text-decoration: none;
}

.linkAboutMe:visited {
  color: white;
  outline: none;
  text-decoration: none;
}

/* Contact*/
.linkContact {
  float: left;
  color: white;
  padding-left: 0.2vw;
  padding-right: 0.2vw;
  border-right: 0.05vw solid grey;
  text-decoration: none;
}

/*JUMP TO*/
.linkProjects {
  color: white;
  float: left;
  padding-left: 0.2vw;
}

.linkProjects:hover {
  color: orange;
  text-decoration: none;
}

.linkProjects:hover ~ .navCollapse {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

.navCollapse {
  padding-left: 0.6vw;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

.navCollapse:hover {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  float: left;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding-left: 0.2vw;
  padding-right: 0.2vw;
  text-decoration: none;
}

li:not(:last-child) {
  border-right: 0.06vw solid grey;
}

li a:hover {
  text-decoration: none;
  color: orange;
}

li a:visited {
  color: white;
  outline: none;
  text-decoration: none;
}

/*EXPANDER*/
.expander {
  background: black;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 1000;
  top: 0;
  transition: 1.5s;
}

.expander.linkHover {
  background: black;
}

/*ON HOVER About me info*/
.onhoverTextPlusPicture {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background: black;
  padding-top: 4vw;
  width: 50vw;
  height: 35vw;
  left: 0;
  right: 0;
  top: 5vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: 0.5s;

  /*border: greenyellow solid 3px;*/
}

#profilFoto {
  width: 11vw;
  padding-bottom: 1.5vw;
}

#onhoverText {
  font-size: 0.6vw;
  margin-left: auto;
  margin-right: auto;
  width: 30vw;
  height: 15vw;
  text-align: center;
}

.onhoverTextPlusPicture.infoHover {
  visibility: visible;
  opacity: 1;
  transition: 1.5s;
}
