/* Default DevCorner Style Setting */

:root{
  --dc-: #28a745;
}

html{
  min-height: 100%;
  overflow: hidden;
}

body{
  height: calc(100vh - 8em);
  padding: 4em;
  color: #fff;
  font-family: Roboto;
  font-weight: 600;
  background: url(../img/img_10.jpeg) no-repeat 50% 50%;
  background-size: cover;
}

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

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(40) 1s 1 normal both,
  blinkTextCursor 500ms steps(40) infinite normal;
}

@keyframes typewriter {
  from{
    width: 0;
  }
  to{
    width: 12.5em;
  }
}

@keyframes blinkTextCursor {
  from{
    border-right-color: rgba(255,255,255,0.75);
  }
  to{
    border-right-color: transparent;
  }
}

















/* End */
