@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(/slownik/assets/css/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"),
    url(/slownik/assets/css/MaterialIcons-Regular.woff2) format("woff2"),
    url(/slownik/assets/css/MaterialIcons-Regular.woff) format("woff"),
    url(/slownik/assets/css/MaterialIcons-Regular.ttf) format("truetype");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: "liga";
}
body {
  background-color: #121212;
  color: rgba(255, 255, 255, 87%);
  font-family: "Roboto", sans-serif;
}
.nav {
  height: 100%; /* 100% Full-height */
  width: 20vw; /* 0 width - change this with JavaScript */
  min-width: 170px;
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: rgba(255, 255, 255, 6%); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the nav */
}

.nav a {
  padding: 4px 1px 8px 1px;
  text-decoration: none;
  font-size: 2rem;
  margin-left: -25px;
  color: rgba(255, 255, 255, 60%);
  display: block;
  transition: 0.3s;
}

.nav a:hover {
  color: rgba(255, 255, 255, 87%);
}

#content {
  transition: margin-left 0.5s;
  padding-left: calc(120px + 15vw);
  padding-top: 20vh;
}
.nodisplay {
  visibility: hidden;
}
