/* 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." */

body {
  background-image: url('https://dl.glitter-graphics.com/pub/153/153617fwnbu4h8qu.gif');
  background-attachment: fixed;
  background-repeat: repeat;
  overflow: hidden;
  font-size: 17px;
  color: black;
  font-family: Georgia, Times, serif;
  text-align: center;
  justify-content: center;
}
a {
  text-decoration: none;
}
a:link {
  color: maroon
}
a:visited {
  color: grey
}
a:hover {
  color: red
}
a:active {
  color: white
}
li {
  text-align: left;
}
h1 {
  color: red;
  font-size: 3em;
  font-variant: small-caps;
}
h2 {
  color: darkred;
  font-size: 1.25em;
  font-weight: normal;
  text-align: center;
  font-variant: small-caps;
}
html {
  overflow: scroll;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: transparent;
}
::selection {
  background: white;
  color: red;
}
#title {
  width: 100%;
  height: 50px;
  margin: auto;
}
#words {
  width: 100%;
  height: 25px;
  margin: auto;
  color: white;
}
.flex-container {
  width: 50%;
  margin: 0 auto;
}
#favourites {
  border-width:12px;
  border-style:solid;
  border-image: url("https://i.imgur.com/Kh6qtcn.png") 11 fill round;
  background-color: silver;
  overflow: scroll;
  overflow-x: hidden;
  height: 10em;  
  display: flex;
  align-items: center;
  justify-content: center;
}
#bg3ranked {
  border-width:12px;
  border-style:solid;
  border-image: url("https://i.imgur.com/gTFIwdW.png") 11 fill round;
  background-color: silver;
  overflow: scroll;
  overflow-x: hidden;
  height: 15em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divSquare {
  width: 40%;
  height: auto;
  border: 2px solid white;
  margin: auto;
  padding: 3px;
  border-radius: 0.75em;
  background: black;
  display: inline-block;
  justify-content: center;
  align-items: center;
}
#textobody mark {
  font-family: Georgia;
  font-variant: small-caps;
  font-size: 1.5em;
  border: 1px dashed red;
  background-color: white;
  text-shadow: -1px 0 #fff, 0 1px #000, 1px 0 #000, 0 -1px #fff, 0 0;
  color: red;
  border-radius: 100%;
  padding: 0 1px 0 1px;
}
#yay {
  overflow: scroll;
  width: auto;
  height: 100px;
  overflow-x: hidden;
  text-align: center;
  font-family: "Courier New", Georgia, serif;
  font-size: 1em;
  line-height: 0.875;
  font-weight: 500;
  color: white;
}
#yay a {
  color: inherit;
  text-decoration: dotted;
  transition: color 0.25s ease;
}
#yay a:hover {
  filter: blur(0.1rem);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: dotted;
  color: red;
  font-style: italic;
}
::-webkit-scrollbar {
  width: 0; /* remove scrollbar space */
  background: transparent; /* to make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
  background: transparent;
}

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    