.button {
  background-color: #4caf50;
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

video {
  height: 100%;
  width: 100%;
}

.custom-pre {
  min-width: 512px;
  display: block;
  padding: 20px;
  margin: 10px 0 10px;
  font-size: 0.8rem !important;
  line-height: 1.4285;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f8f8f8;
  border-width: 1px 0;
  border-style: solid;
  border-color: #e4e4e4;
}

@keyframes highlight-pre {
  0% {
    background: #00ffaa;
  }

  100% {
    background: #f8f8f8;
  }
}

.run-highlight-pre {
  animation: highlight-pre 0.5s;
}

.custom_form input[type='text'],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.custom_form textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.example-pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.md-typeset__scrollwrap {
  overflow-x: hidden !important;
}

.text-typing p {
  margin: 0px;
  white-space: nowrap;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  animation: typing 1s steps(22, end) forwards; /* , blink 1s infinite; */
}

@keyframes typing {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* @keyframes blink {
    0%,
    
    50% {
        border-right: 2px solid #222;
    }
} */
