body {
  color: rgba(255,255,255,.75);
  font-family: 'Anonymous Pro', monospace;
  background-color: #191919;
}

h1 {
  font-family: 'Anonymous Pro', monospace;
  color: white;
  size: 80px;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  color: white;
}

p {
  font-family: 'Montserrat', sans-serif;
}

.navbar {
  padding: 10px 30px 0;
}

.navbar-brand {
  font-size: 60px;
}

.navbar-dark .navbar-brand {
  color: #14ffec;
}

.navbar-toggler-icon {
  font-size: 2.5rem;
}

.navbar-nav a {
  font-size: 30px;
  width: 120px;
}

.title {
  padding-top: 40px;
  text-align: center;
  padding-bottom: 80px;
}

.line-1{
    position: relative;
    top: 50%;
    width: 5.6em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
}

/* Animation */
.anim-typewriter{
  animation: typewriter 1s steps(10) .20s 1 normal both,
             blinkTextCursor 1000ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 5.6em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}

/* introduction */
.introduction {
  padding: 0 50px;
}

.introduction img {
  max-width: 25%;
}

.introduction h1 {
  font-size: 45px;
}

.introduction p {
  line-height: 1.8;
}

.introduction .curve {
  width: 33%;
  height: auto;
  min-width: 150px;
  float: left;
  margin-right: 2rem;
  border-radius: 50%;
  -webkit-shape-outside: circle();
  shape-outside: circle();
}

@media (max-width: 1028px) {
  .navbar-nav a {
    font-size: 60px;
  }

  .title {
    font-size:40px;
    margin: 80px auto 20px;
  }

  .introduction {
    padding: 0 80px 200px;
  }

  .introduction img {
    max-width: 50%;
  }

  .introduction p {
    font-size: 40px;
  }
}
