body, html {
    height: 500px;
  }
  
  .parallax {
    /* The image used */
    background-image: url('https://images.freeimages.com/images/premium/previews/6693/6693200-abstract-artwork.jpg');
  
    /* Full height */
    height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /*
.glow {
  border: none;
  outline: none;
  /* cursor: pointer; */
  position: relative;
  z-index: 0;
  border-radius: 2px;
  color: var(--header_text);
  overflow: visible;
  margin:auto;
  display:block;
}

.glow:before {
  content: '';
  background: linear-gradient(145deg, #000000 , #444444, #000000 , #ffffff, #000000 , #ffffff, #000000 , #ffffff, #000000 , #ffffff);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 2px;
}



.glow:hover:before {
  opacity: 1;
  transition: 1.5s;
}

.glow:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  background-color: var(--control_background_color) !important;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 2px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
*/

@-webkit-keyframes typing { from { width: 0; } }
@-webkit-keyframes blink-caret { 50% { border-color: transparent; } }

h3 { 
  margin-top:0.em;
  font-family: Roboto Condensed;
  text-align: left;
  font-size:24pt,
	overflow: hidden;
	-webkit-animation: typing 2s steps(21, end),
	           blink-caret .5s step-end infinite alternate;
}



.type .anim {
    
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 2em solid rgba(0, 0, 0, 0.089); /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .02em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
  }


  /* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: rgb(0, 0, 0); }
}

._dash-loading {
  margin: auto;
  color: transparent;
  width: 0;
  height: 0;
  text-align: center;
}