/******************************************************/
/* navigation bar */
.myname {
  color: white;
}
/* nav modifiers */
.site-header a{
   text-decoration: none;
 /* color: white; */
}

.site-header a:hover{
  /* color:#1190A8; */
  color:#56416B;
}

/* for the scrollSpy */
body{
  position: relative;
  margin-top: 5em;
}

.console-cursor{
  color:#2AB6BB;
  font-weight: 900;
}

/* Animation for cursor console blinking */
.console-cursor{
  animation: blinker 0.8s step-start infinite;
}
@keyframes blinker{
  50%{
    opacity:0;
  }
}


/* .max-height{
   max-height: 55vw;
  margin-bottom: 30%; 

} 
*/


li:hover{
  background-color:#17a2b8;
  font-size:x-large;
  color: #fff;
  
}





/******************************************************/
/* background Animations */

body {
  margin:0;

}

.bg {
  
  animation:slide 3s ease-in-out infinite alternate;
  --color-One:#6c3 ;
  --color-Two:#09f ;
  /* background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%); */
   background-image: linear-gradient(-60deg, var(--color-One) 50%, var(--color-Two) 50% );
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}



@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}


/******************************************************/
/* Glowing */

.glowing{

  font-weight: bold;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
  -moz-animation: glow 2s ease-in-out infinite alternate;
  animation: glow 2s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  from {
    color: #fff;
    text-shadow: 0 0 10px #00fff2, 0 0 20px #00fff2, 0 0 30px #00fff2,
      0 0 40px #00fff2, 0 0 50px #00fff2, 0 0 60px #00fff2, 0 0 70px #00fff2,
      0 0 90px #00fff2;
  }

  to {
    color: gray;
    text-shadow: 0 0 20px #00fff2, 0 0 30px #00fff2, 0 0 40px #00fff2,
      0 0 50px #00fff2, 0 0 60px #00fff2, 0 0 70px #00fff2, 0 0 80px #00fff2,
      0 1 90px #00fff2;
  }
}
