/* 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: linear-gradient(#000000, #04afec);
}

div.title {
  width: 600px;
  margin: 0 auto;
  font-family: Gothamono;
  color: white;
  text-align: center;
}

div.middle {
  min-height: 100vh;
  width: 600px;
  margin: 0 auto;
  font-family: Gothamono;
  color: white;
  text-align: center; 
  display: inline-block;
}

div.left{
  width: calc(50% - 300px);
  min-height: 100vh;
  float: left;
  font-family: Gothamono;
  display: inline-block;
}

div.right{
  width: calc(50% - 300px);
  min-height: 100vh;
  float: right;
  font-family: Gothamono;
  display: inline-block;
}

/* RATINGS COLORS */
.white p {
  background-color: white; 
  border-color: white !important;
}
.white ul {
  border-color: white !important; 
}

.ten p {
  background-color: #FF7F7F; 
  border-color: #FF7F7F !important;
}
.ten ul {
  border-color: #FF7F7F !important; 
}

.nine p {
  background-color: #FFBF7F; 
  border-color: #FFBF7F !important;
}
.nine ul {
  border-color: #FFBF7F !important; 
}

.eight p {
  background-color: #FFDF7F; 
  border-color: #FFDF7F !important;
}
.eight ul {
  border-color: #FFDF7F !important; 
}

.seven p {
  background-color: #FFFF7F; 
  border-color: #FFFF7F !important;
}
.seven ul {
  border-color: #FFFF7F !important; 
}

.six p {
  background-color: #BFFF7F; 
  border-color: #BFFF7F !important;
}
.six ul {
  border-color: #BFFF7F !important; 
}

.five p {
  background-color: #7FFF7F; 
  border-color: #7FFF7F !important;
}
.five ul {
  border-color: #7FFF7F !important; 
}

.four p {
  background-color: #7FBFFF; 
  border-color: #7FBFFF !important;
}
.four ul {
  border-color: #7FBFFF !important; 
}

.three p {
  background-color: #7F7FFF; 
  border-color: #7F7FFF !important;
}
.three ul {
  border-color: #7F7FFF !important; 
}

.two p {
  background-color: #BF7FBF; 
  border-color: #BF7FBF !important;
}
.two ul {
  border-color: #BF7FBF !important; 
}

.one p {
  background-color: #858585; 
  border-color: #858585 !important;
}
.one ul {
  border-color: #858585 !important; 
}

/* TIERLIST CSS */
#tierlist-title {
  font-size: 50px;
  width: 500px;
  text-align: center;
  border: 2px solid;
  color: black;
  
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  
  padding: 5px;
  margin: 0 auto;
  margin-top: 15px;
}

.left #tierlist-title {
  width: 100px;
  font-size: 20px;
  margin: 0 0;
  float: right;
  clear: right;
  margin-top: 15px;
}

.right #tierlist-title {
  width: 100px;
  font-size: 20px;
  margin: 0 0;
  float: left;
  clear: left;
  margin-top: 15px;
}

#tierlist {
  border: 2px solid;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #1f1f1f;
  text-align: left;
  width: 500px;
  margin: 0 auto;
  
  padding: 5px;
  font-size: 0;
}

.left #tierlist {
  border: 2px dashed;
  width: 100px;
  margin: 0 0;
  float: right;
  clear: right;
}

.right #tierlist {
  border: 2px dashed;
  width: 100px;
  margin: 0 0;
  float: left;
  clear: left;
}

#tierlist li {
  display: inline-block;
}

#tierlist img {
  object-fit: fill;
  width: 100px;
  height: 150px;
}

.left #tierlist img {
  height: 100px;
  object-fit: cover;
}