/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html{
    height:100%;
    min-width:1920px;
    overflow-x: hidden;
}

body {
  margin: 0;
  background-image: linear-gradient(rgb(0,11,5), rgb(0,11,205));
  color: white;
  font-family: Verdana;
  min-height: 100%;
  background-attachment: fixed;
}
  
p{
  text-align: left;
  color: black;
}
  
.header{
 text-align:center; 
}

h2 {
  font-size: 10px;
  color: lightgrey;
}

h3{
  text-align: center;
}

h4 {
  font-size: 11px;
  color: black;
}

h5 {
  font-size: 10px;
  color: lightgrey;
  position: fixed;
  right: 30px;
  top: 100px;
}

p1{
  border-top: 3px solid black; 
  font-size: 15px;
  color: black;
  position: fixed;
  left: 480px;
  top: 350px;
  text-align: left;
  max-width:500px;
}
  
a:link{
  text-decoration: none;
  color:gray;
}

a:visited {
  text-decoration: none;
  color:gray;
}
          
a:hover{
  color:blue;
}

a:active {
  color:red;
}

.align-center{
  position:absolute;
  transform: translate(45%, 0%);
}

.align-left{
  position:absolute;
  transform: translate(10%, 300%);
}

.align-right{
  position:absolute;
  transform: translate(900%, 100%);
}

.header {
  margin:auto;
  width:1000px;
  max-width:100%;
  box-sizing: border-box;
}

.body {
  margin:auto;
  width:1000px;
  max-width:100%;
  height:2000px;
  max-height:100%;
  overflow-y: scroll;
  box-sizing: border-box;
  text-align: left;
  
  border: 16px solid;
  border-image: url('/border3.png') 32 stretch;
  background-color:white;
  line-height: 1.5;
  margin-bottom:100px;
}

.folder {
  width:450px;
  max-width:100%;
  height:500px;
  max-height:100%;
  overflow-y: scroll;
  box-sizing: border-box;
  text-align: left;
}

.fantasy {
  font-family: fantasy;
}

.audio {
  margin-top:5px;
  margin:5;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  z-index: 3;
}

.audio1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 308px;
  z-index: 2;
}

.fixed {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;

}

.bottom {
  position: fixed;
  bottom: 0;
  width:200%;
  z-index: -1;
  transform: translate(-60.3%, 0%);
}

ul .a {
  list-style-type: none; 
}

.album img{
  max-width: 100px; 
  width: 100px;
  max-height:100px;
  height:100px;
  margin: 2px;
}

.fav{
  outline: 2px solid;
  outline-color:blue;
  outline-offset:1px;
}

.noplay{
  outline: 2px solid;
  outline-color:red;
  outline-offset:1px;
}

.mistake{
  outline: 2px solid;
  outline-color:purple;
  outline-offset:1px;
}

.best{
  outline: 2px solid;
  outline-color:gold;
  outline-offset:1px;
}

em {
 font-size: 2; 
}


.ran{
  position:fixed;
  right: 30px;
  top: 150px;
  max-width: 150px; 
  min-width:150px;
  width: 150px;
  max-height:150px;
  min-height:150px;
  height:150px;
  color: black;

  outline: 4px solid;
  outline-color:black;
  outline-offset:2px;
}


.container {
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: min-content 1fr min-content;
  gap: 1em;
  margin: 1em auto;
}

.infinite-scrolling { background: url('/back1.png') repeat; position: absolute; height: 3000px; width: 5000px; z-index: -1; animation: slide 60s linear infinite; 

}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1000px, 0, 0); /* The image width */
  }
}
