html {
    background: black;
    font-family: 'MS UI Gothic', 'Helvetica', sans-serif;
    overflow-x: hidden;
    color: #ffffff;
}

p {
    color: rgb(255, 255, 255);
    margin: 3px;
}

.container {  
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 0.9fr 0.2fr 2.7fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    border-radius: 5px;
    border: rgb(255, 255, 255) 1px solid;
    width: 35em;
    height: 27em;
    margin: auto;
    margin-top: 5em;
}
  
.banner { 
    grid-area: 1 / 1 / 2 / 4;
    position: relative;
    background: url('https://i.ibb.co/MYcMdWZ/2fe94c2c61bc99b3bac054133491fc35.jpg');
    background-size: cover;
    border-radius: 5px 5px 0px 0px;
    border-bottom: rgb(255, 255, 255) 1px solid;
}
  
.marquee { 
    grid-area: 2 / 1 / 3 / 4;
    border-bottom: rgb(255, 255, 255) 1px solid;
}
  
.content { 
    grid-area: 3 / 1 / 4 / 4;
    overflow-y: scroll;
    position: relative;
    padding-top: 0.5em;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
  
::-webkit-scrollbar-thumb {
    background: transparent;
}

#title {
    font-family: gothik-steel;
    font-size: 5em;
    text-align: center;
    color: rgb(255, 255, 255);
    margin: 0;
    animation: squiggly-anim 0.5s linear infinite;
    position: absolute;
    pointer-events: none;
    left: 0.3em;
}

@keyframes squiggly-anim {
    0% {
      -webkit-filter: url("#squiggly-0");
              filter: url("#squiggly-0");
    }
    25% {
      -webkit-filter: url("#squiggly-1");
              filter: url("#squiggly-1");
    }
    50% {
      -webkit-filter: url("#squiggly-2");
              filter: url("#squiggly-2");
    }
    75% {
      -webkit-filter: url("#squiggly-3");
              filter: url("#squiggly-3");
    }
    100% {
      -webkit-filter: url("#squiggly-4");
              filter: url("#squiggly-4");
    }
  }

.svg-container {
    width: 0;
    height: 0;
    overflow: hidden;
}

#intro {
    width: 15em;
    height: 11em;
    box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow-y: scroll;
}

.section {
    position: relative;
    padding: 10px;
    border-radius: 0px 0px 5px 5px;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 15px 15px 15px;
    justify-content: flex-end;
} 

#tintro {
    font-family: gothik-steel;
    position: absolute;
    font-size: 4em;
    bottom: -0.2em;
    left: 1.6em;
    z-index: 2;
    color: whitesmoke;
}
  
#intro::before {
    z-index: 1;
  }
  
#intro:hover {
    z-index: 99;
  }
  
#frame1 {
    position: absolute;
    width: 18em;
    top: 6.5em;
    left: -0.8em;
    pointer-events: none;
  }
  
#deco1 {
    position: absolute;
    width: 8em;
    top: 6em;
    left: -0.6em;
    z-index: 1;
    pointer-events: none;
  }
  
  
#stamps {
    width: 6.2em;
    height: 10.9em;
    margin-left: 5px;
    margin-right: 5px;
  }
  
#tindex {
    font-family: acidic;
    font-size: 3.5em;
    color: whitesmoke;
    align-self: center;
}
  
#index {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 11.2em;
    justify-content: flex-start;
}
  
#index a {
    box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
    border-radius: 5px;
    padding: 0px 3px;
    color: white;
    text-decoration: none;
}
  
#index a:visited {
    color: rgb(230, 221, 221);
    text-decoration: none;
}
  
#blinkies img {
    width: 150px;
    height: 20px;
}
  
#blinkies {
    width: 18em;
}

.section2 {
    position: relative;
    display: flex;
    padding: 0px 15px 15px 15px;
    justify-content: space-between;
}
  
#tests {
    padding: 10px;
    border: white 1px solid;
    width: 21.8em;
    height: 20em;
    overflow-y: scroll;
    padding-top: 0.5em;
}
  
#rating {
    width: 10em;
}

#trandom {
    font-family: gothik-steel;
    position: absolute;
    font-size: 4em;
    top: -0.75em;
    left: 5.2em;
    z-index: 2;
    color: whitesmoke;
    pointer-events: none;
}

#imood {
    position: relative;
    left: -6.4em;
    top: 5.4em;
}

#music {
    width: 6em;
}

#entry {
    display: flex;
    padding: 10px;
    border-radius: 5px;
}