.icon {
  width: 120px;
  height: 120px;
  background-image: url('../images/icon.png');
  background-size: 117%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 10px black;
  margin: auto;
  border-radius: 30px;
  border: 5px solid blueviolet;
  margin-top: 10px;
}

nav ul a,
nav .brand-logo {
  color: #444;
}

p {
  line-height: 2rem;
}

.sidenav-trigger {
  color: #26a69a;
}

.parallax-container {
  min-height: 80vh;
  line-height: 0;
  height: auto;
  color: rgba(255, 255, 255, .9);
}

.parallax-container .section {
  width: 100%;
}

@media only screen and (max-width : 992px) {
  .parallax-container .section {
    position: absolute;
    top: 40%;
  }

  #index-banner .section {
    top: 10%;
  }
}

@media only screen and (max-width : 600px) {
  #index-banner .section {
    top: 0;
  }
}

.icon-block {
  padding: 0 15px;
}


footer.page-footer {
  margin: 0;
}

.icon-block .material-icons {
  color: blueviolet !important;
  font-size: 80px;
  text-shadow: 0px 0px 1px white;
}

.feature {
  color: blueviolet;
  font-weight: bold;
  text-shadow: 0px 0px 1px rgb(0, 0, 0);
  background-color: white;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px black;
  font-family: 'Consolas', monospace;
  width: auto;
  line-height: 70px;
}

.typewriter {
  font-size: 3em;
  font-weight: 700;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px blueviolet;
  margin: 20px auto;
  overflow-y: visible;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.15em solid orange;
  animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end 3;
  animation-fill-mode: forwards;
}

@keyframes typing {
  from {
    width: 0;
  }

  99.9% {
    width: 100%;
  }

  to {
    width: "auto";
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: orange;
  }
}

@media only screen and (max-width: 600px) {
  .header {
    font-size: 2em !important;
  }

  .typewriter {
    font-size: 1.5em !important;
  }

  .btn-large {
    font-size: 1em !important;
    padding: 0 1rem !important;
  }
}