.typewrite, .phrase-fixe {
  text-align: left;
color:#333333;
 font-size:min(max(2rem, 10vw), 68px);

	font-weight:200;
}

.blinking-cursor {
 margin: 0 0 -5px 10px;
width: 2px;
height: 4vw;
  display: inline-block;
  background-color: #333333;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
   background-color: transparent;
  }
  50% {
   
	 background-color: #333333;
  }
}

@-moz-keyframes blink {
  from, to {
   background-color: transparent;
  }
  50% {
    background-color: #333333;

  }
}

@-webkit-keyframes "blink" {
  from, to {
   background-color: transparent;
  }
  50% {
  
	 background-color: #333333;
  }
}

@-ms-keyframes "blink" {
  from, to {
   background-color: transparent;
  }
  50% {
 
 background-color: #333333;
  }
}

@-o-keyframes "blink" {
  from, to {
   background-color: transparent;
  }
  50% {
 background-color: #333333;
  }
}