.code {
  
}
.code_header {
  background: #eee;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  padding: 5px;
}
.code_header .circle {
  border-radius: 50px;
  width: 12px;
  height: 12px;
  margin: 0 0.2rem;
}
.code_header .circle:nth-child(1) {
  background: #ff5f57;
}
.code_header .circle:nth-child(2) {
  background: #ffbd2e;
}
.code_header .circle:nth-child(3) {
  background: #2ace42;
}
.code_header .text {
  display: flex;
  justify-content: center;
  flex: 1;
  margin-left: -3rem;
}
.code_terminal {
  background: #333;
  height: 100px;
  border-radius: 0 0 5px 5px;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}
span.animate-text {
  margin-left: 1rem;
}
.typed-cursor {
  opacity: 1;
  font-weight: 100;
  -webkit-animation: blink 0.7s infinite;
          animation: blink 0.7s infinite;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}