


.effect-wrapper {

  font-weight: normal;
}

#typed {

  color: #000;
  font-size: 50px;
}

.cursor {
  display: inline-block;
  background-color: #2a3b5b;
  animation: blinker 800ms infinite;
  font-size: 48px;
}

.cursor.typing-true {
  animation: none;
}

@keyframes blinker {
	0% { background-color: #2a3b5b; }
	50% { background-color: transparent; }
	100% { background-color: #2a3b5b; }
}


@media only screen and (max-width: 575px) {
#typed {
 
    font-size: 36px;}
  .cursor{ font-size: 32px;}
}
