html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    background-color: #0e1010;
    color: white;
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: monospace;
    
  }
  

  .links {
    /*color: transparent;*/
	  color: white;
	  text-decoration: underline transparent;
    font-weight:900;
    text-shadow: 1px black;
    font-size: 1.5rem
  }

  .links:hover{
    text-decoration: underline white;
  }
  
  
  

  ::-webkit-scrollbar-track{
      box-shadow: inset 0 0 5px gray;
      border-radius: 10px;
      filter: saturate(0%);
  }

  ::-webkit-scrollbar-thumb{
      background: white;
      border-radius: 5px;
      filter: saturate(50%);
  }

  .fade{
    /*background-image: linear-gradient(transparent 7%,
    #fff 30%, #fff 70%, transparent 93%);
    background-attachment: fixed;
    -webkit-background-clip: text;*/
    text-shadow: 0 1px 0 transparent;
      z-index: 1;
  }
  .fade > *{
     /* color: transparent;*/
	  color:white;
  }


  main {
    position:absolute;

    display: grid;
    grid-template-columns: repeat (12, 1fr);
  }

  #bg {
    display: block;
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  :root {
    --dark-bg: rgba(15, 15, 15, 0.95);
    --spacing: 350px;
  
    font-family: brandon-grotesque, sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  header {
    grid-column: 2 / span 5;
    font-size: 2.5rem;
    padding: 2rem;
    margin-bottom: var(--spacing);
    animation-name: anime;
    animation-duration: 3s;
    margin-left: 20px;
  }

  section {
    grid-column: 2 / 8;
    padding: 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: var(--spacing);
    margin-left: 20%;
    margin-top: -200px;
  }

  .container {
    width: 100%;
    
  }
  .eye {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    background: #CCC;
  }
  .eye:after { 
    position: absolute;
    bottom: 17px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    content: " ";
  }

  blockquote {
    margin: 0;
    padding: 0;
    grid-column: 2 / span 9;
    margin-bottom: var(--spacing);
  }

  blockquote p {
    color: black;
    background-color: white;
    font-size: 4rem;
    display: inline;
    line-height: 1;
  }

  .left {
    grid-column: 6 / 12;
  }

  span#name{
    font-weight:bold;
  }
  p#name{
    font-weight:bold;
  }

  .outline:hover {
    /*background-image: linear-gradient(transparent 7%,
    #fff 30%, #fff 70%, transparent 93%);*/
  }
  
  .mask.intro-content * {
    opacity: 1;
   /* background-image: linear-gradient(transparent 7%,
    #fff 30%, #fff 70%, transparent 93%);
   background-attachment: fixed;
   -webkit-background-clip: text;*/
   z-index: 1;
  }
  
  .mask.intro-content .content-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 2em 0;
    overflow: hidden;
    margin-bottom: -200px
  }
  .mask.intro-content .content-wrapper::before {
    /* vertical bar */
    content: '';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-color: #fff;
    -webkit-animation: pulse 1.3s 0.3s both;
    -moz-animation: pulse 1.3s 0.3s both;
    animation: pulse 1.3s 0.3s both;
  }
  .no-cssanimations .mask.intro-content .content-wrapper::before {
    opacity: 0;
  }
  .mask.intro-content .content-wrapper > div {
    position: relative;
    z-index: 1;
  }
  
  .mask.intro-content .content-wrapper,
  .mask.intro-content .content-wrapper > div {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    animation-delay: 1.1s;
    -webkit-animation-fill-mode: backwards;
    -moz-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
  }
  
  .mask.intro-content .content-wrapper {
    -webkit-animation-name: mask-wrapper;
    -moz-animation-name: mask-wrapper;
    animation-name: mask-wrapper;
  }
  
  .mask.intro-content .content-wrapper > div {
    -webkit-animation-name: mask-content;
    -moz-animation-name: mask-content;
    animation-name: mask-content;
  }
  
  @-webkit-keyframes mask-wrapper {
    0% {
      -webkit-transform: translateX(50%);
    }
    100% {
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes mask-wrapper {
    0% {
      -moz-transform: translateX(50%);
    }
    100% {
      -moz-transform: translateX(0);
    }
  }
  @keyframes mask-wrapper {
    0% {
      -webkit-transform: translateX(50%);
      -moz-transform: translateX(50%);
      -ms-transform: translateX(50%);
      -o-transform: translateX(50%);
      transform: translateX(50%);
    }
    100% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
    }
  }
  @-webkit-keyframes mask-content {
    0% {
      -webkit-transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes mask-content {
    0% {
      -moz-transform: translateX(-100%);
    }
    100% {
      -moz-transform: translateX(0);
    }
  }
  @keyframes mask-content {
    0% {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0);
    }
  }
  @-webkit-keyframes pulse {
    0%, 30.8% {
      opacity: 0;
    }
    15.4%, 46.2%, 61.5%, 70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-moz-keyframes pulse {
    0%, 30.8% {
      opacity: 0;
    }
    15.4%, 46.2%, 61.5%, 70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes pulse {
    0%, 30.8% {
      opacity: 0;
    }
    15.4%, 46.2%, 61.5%, 70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .hr {
    
    width: 2px;
    height: 100vh;
    position: fixed;
    left: 5px;
    background: -webkit-linear-gradient(top, transparent 7%,
    #fff 30%, #fff 70%, transparent 93%);
   }

   .hrTop {
    
    width: 2px;
    height: 50vh;
    position: absolute;
    left: 5px;
    background: black;
    z-index: 1;
	opacity: 0.95;
	   background: -webkit-linear-gradient(top, transparent 7%,
    #000 30%, #000 98%, transparent 100%);
   }

   .hrback{
    
    width: 1px;
    left: 1px;
    height: 100vh;
    position: fixed;
    background: black;
    opacity: 0.4;
   }

.ball{
    position: fixed;
    margin-top: 49vh;
    left: 0.5px;
    /*left: 5.5px;*/
    height: 12px;
    width: 12px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    z-index: 1;
}

.rotator{
  height: 45px;
  display: flex;
}
.words{
    overflow: hidden;
    /*background-image: linear-gradient(transparent 7%,
    #fff 30%, #fff 70%, transparent 93%);
   background-attachment: fixed;
   -webkit-background-clip: text;*/
    
}

.exp{
    display: block;
    height: 110%;
    padding-left: 10px;
    color: white;
    animation: spin_words 20s infinite;
}
@keyframes spin_words{
  0%{
    transform: translateY(30%);
  }
  12%{
    transform: translateY(-70%);
  }
  24%{
    transform: translateY(-170%);
  }
  36%{
    transform: translateY(-270%);
  }
  48%{
    transform: translateY(-370%);
  }
  60%{
    transform: translateY(-470%);
  }
  72%{
    transform: translateY(-570%);
  }
  84%{
    transform: translateY(-670%);
  }
  100%{
    transform: translateY(-770%);
  }
}

.expt{
  display: block;
  height: 110%;
  width: 110wh;
  padding-left: 10px;
  color: white;
  animation: spin_tools 20s infinite;
  overflow:hidden;
}
@keyframes spin_tools{
0%{
  transform: translateX(30%);
}
12%{
  transform: translateX(-70%);
}
24%{
  transform: translateX(-170%);
}
36%{
  transform: translateX(-270%);
}
48%{
  transform: translateX(-370%);
}
60%{
  transform: translateX(-470%);
}
72%{
  transform: translateX(-570%);
}
84%{
  transform: translateX(-670%);
}
100%{
  transform: translateX(-770%);
}
}

h3 {
  /*background-image: linear-gradient(transparent 7%,
    #808080 30%, #808080 70%, transparent 93%);
   background-attachment: fixed;
   -webkit-background-clip: text;*/
	color: #808080;
}

.credits{
  display: flex;
}

.credit{
  flex: 1;
  max-width: 300px
}

.credit:first-child{
  margin-right: 20px;
}

.smth{
  flex: 1;
  max-width: 350px
}

.smth:first-child{
  margin-right: 20px;
}

.smth1{
  flex: 1;
  max-width: 300px
}

.smth1:first-child{
  margin-right: 20px;
}


.wrapper {
  height: 50vh;
  /*This part is important for centering*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.typing-intro {
  width: 22ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 1em;
  color: white;
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}

@keyframes end {
  0% {
    border-color: transparent
  }
  100%{
    border-color: transparent
  }
}

.projector {
	display: block;
  margin-left:40px;
  margin-bottom: 30px;
  padding-right:13px;
  transition: 0.3s;
  //background: #808080;
  border: 1px black;
  font-family: monospace;
}

.projector img {
   width: 280px;
   height: 150px;
   float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 15px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.projector:hover {
  cursor:pointer;
  transform: scale(1.05);
}

.projector h3, .projector p{
  padding-left:15px;
  margin:0;
  color: white;
 font-size: 1rem;
}

.projector h3{
  margin-bottom: -15px
}

.showme{
  font-weight: 900;
   
}


.showme:hover .smth{
  width: 10px;
}


.typewriter-text {
  animation-name: typewriter;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  animation-duration: 8s;
  animation-timing-function: steps(9, end);
  animation-iteration-count: infinite;
  color: white;
  border-left: white;
  font-size: 2.5rem
}



@keyframes typewriter {
  0%,
  100% {
    width: 0;
  }
  10%,
  80% {
    width: 5em;
  }
}


.github img{
  width: 20px;
  height: 20px;
}

.intro-svg{
	width: 650px;
	height: 500px;
}

svg .intro-text {
  font-family: Helvetica;
  letter-spacing: 10px;
  stroke: lightblue;
  font-size: 150px;
  font-weight: 700;
  stroke-width: 3;
  /*background-image: linear-gradient(transparent 7%,
    #808080 30%, #808080 70%, transparent 93%);
   background-attachment: fixed;
   -webkit-background-clip: text;*/
}

.intro-text{
  margin-top: 100px; 
  height: 500px; 
  width: 650px; 
}

 @media screen and (max-width: 700px) {
    .intro-svg{
		width: 100%;
	 }
	 
	 svg .intro-text{
		font-size: 75px; 
	 }
}

svg .intro-text:hover{
  animation: textline 5s infinite alternate;
}

@keyframes textline {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset:  20%;
    fill:hsl(, 68%, 75%)

  }
  
  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffstet: -20%;
    fill: hsla(18, 68%, 75%,0%)
  }
  
}

table{
  font-size: 1.2rem;
  /**background-image: linear-gradient(transparent 7%,
    #808080 30%, #808080 70%, transparent 93%);
   background-attachment: fixed;
   -webkit-background-clip: text;*/
	color: #fff;
   margin-top: 30px;
   font-weight: 400;
   overflow:hidden;
}
td, th {
  padding: .25em;
  font-weight: normal;
}

.descriptor{
  font-size: 1.1rem;
  background-image: linear-gradient(transparent 7%,
    #fff 20%, #fff 80%, transparent 93%);
   background-attachment: fixed;
   -webkit-background-clip: text;
}

textarea{
  height: 300px;
  width: 100%;
  background: transparent;
  color: white;
  border-color:white;
  font-size: 1rem;
}

select{
  width: 100%;
  font-size: 1rem;
}

button{
  background:transparent;
  border-color:white;
  color: white;
  width: 100px;
  height: 30px;
}

button:hover{
  color:black;
  background: white;
  border-color: black;
  cursor:pointer;
}


@media screen and (max-width: 600px) {
  svg{
    width:97%
  }
  svg text {
    font-size: 85px;
  }
}