@keyframes marquee {
  0% {
    background-position-x: 10000px;
  }
  100% {
    background-position-x: -10000px;
  }
}

div{
  width: 40vh;
  text-align: justify;
}

/* general */

a{
  text-decoration: none;
}

body{
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: white;
    height: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

main{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: auto auto;
    flex-direction: row;
    width: 100%;
    height: 82vh;
    overflow: auto;
    justify-content: center;
}

footer{
    position: fixed;
    bottom: 0;  
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;

}

header{
    cursor: none;
    text-align: center;
    background: linear-gradient(to right, rgb(255, 68, 35), rgb(32, 255, 69) , rgb(23, 123, 255), rgb(32, 255, 69), rgb(255, 68, 35));
    background-repeat: repeat-x;
    background-size:750%; 
    animation: marquee 10s linear infinite; 
    overflow: hidden;
    color: black;
    font-weight: lighter;
    font-size: 2em;
    line-height: 0px;
}

/* classes */

.hidden{
    display: none;
}

.gradientBody{
  background-color: black;
  background: linear-gradient(to right, black, rgb(31, 8, 8), rgb(27, 27, 27), rgb(17, 3, 20), black, rgb(31, 8, 8), rgb(17, 6, 17), rgb(1, 4, 34), black);
    background-repeat: repeat-x;
    background-size:750%; 
    animation: marquee 30s linear infinite; 
}

.overrideBody{
  background-color: white;
  color: black;
}


/* id */

#quote{
  text-align: center;
}

#mugcup{
    width: 40px;
}

#headerText{
  font-size: 2em;
}

#quoteContainer{
    cursor: crosshair;
}

#tracklist{
    position: fixed;
    top: 25%;
    line-height: 22px;
    left: 35%;
    z-index: -1;
    opacity: 20%;
    width: 400px;
}

#bio{
  width: 400px;
  height: 80vh;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
  line-height: 100%;
  padding: 0 25%;
  font-weight: lighter;
}

/* slight fixes, subtags */
footer p{
  height: 100%;
  margin: 2px;
  padding-top: 10px;
}

/* FONT CLASSES */

.typewriter{
  font-family: "Source Code Pro", monospace;
  line-height: 90%;
  font-size: 16px;
  letter-spacing: -1.5px;
}

h1.typewriter{
  line-height: 50%;
}

.script{
  font-family: "Meie Script", cursive;
  line-height: 50%;
  font-size: 20px;
}

.cursive{
  font-family: "Cedarville Cursive", cursive;
  line-height: 50%;
  font-size: 16px;
}

.modern{
  font-family: "Forum", serif;
  line-height: 50%;
}

.sanserif{
  font-family: "Libre Franklin", sans-serif;
  line-height: 50%;
}
@media screen and (max-height: 700px) {
  main{
    height: 72vh;
  }
}


@media screen and (max-width: 700px) {
  #bio{
    width: 80%;
    padding: 0 10%;
    height: 90vh;
  }
  main{
    height: 86vh;
  }
  header{
    font-size: 1.5em;
  }
  #headerText{
    font-size: 1.5em;
  }
}



@media screen and (max-width: 400px) {
  header{
    font-size: 1.2em;
  }
  #headerText{
    font-size: 1.2em;
  }
  p{
    font-size: 12px;
  }
}
