* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #9c9c9c rgba(156, 156, 156, 0.5);
  /* What follows justify text and allow to break word and then add a - into a words */
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-track {
  border: 7px solid rgba(156, 156, 156, 0.5);
}
*::-webkit-scrollbar-thumb {
  background: #9c9c9c;
  border-radius: 3px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #001428;
  overflow-x: hidden;
}

/* Properties of the nav bar */
nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  font-size: 24px;
}
nav #navCheck, nav .navButton {
  display: none;
}
nav .material-icons {
  pointer-events: none;
  font-size: 30px;
  margin-right: 80px;
  color: #DAF3FF;
}
nav .logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #DF9F1F;
  font-size: 22px;
  margin-left: 50px;
}
nav .logo .completeLogo {
  margin-left: 2px;
}
nav .navLinks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav .navLinks a {
  text-decoration: none;
  color: white;
  margin-right: 50px;
  /* Create progress line when hovering */
  background: linear-gradient(to top, #DF9F1F 0%, #DF9F1F 7%, transparent 10.01%) no-repeat left bottom/0 100%;
  transition: background-size 0.2s ease;
  -webkit-transition: background-size 0.2s ease;
  -moz-transition: background-size 0.2s ease;
  -ms-transition: background-size 0.2s ease;
  -o-transition: background-size 0.2s ease;
}
nav .navLinks a:hover {
  background-size: 100% 100%;
}
nav .navLinks #currentLink {
  color: #7ac4c7;
}

/*# sourceMappingURL=navBar.css.map */
