#create, #links, main{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: start;
  width: 100%;
}

body{
  background-color: #1f1f1f;
  color: white;
  font-family: "Fugaz One", sans-serif;
  width: 100%;
}

#champlist {
  display: flex;
  flex-flow: row wrap;
  grid-area: champlist;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  overflow-y: scroll;
  overflow-x: hidden;
}

.champ {
  margin: 0px;
  padding: 0px;
}

.champ img {
  max-width: 80px;
  max-height: 80px;
  padding: 3px;
}

label{
  font-size: 1.5vw;
}

#team1{
  background-color: #0070c0;
}

#team2{
  background-color: #c00000;
}

.teamdrop{
  height: 1.5vw;
  width: auto;
  position: relative;
  top: -.2vw;
  border: 0px;
  border-radius: 5px;
  margin-left: 10px;
  font-weight: bold;
  color:white;
}

option:hover {
    background-color: black;
}

#create>div, #links>h2{
  margin: 1vw 0vw;
}

h2{
  font-size: 1.5vw;
  font-weight: normal;
  margin: 0px;
}

#createbutton{
  width: 300px;
  height: 60px;
  background-image: url(/images/webassets/draftbutton.png);
  border: none;
  color: white;
  font-family: "Fugaz One", sans-serif;
  font-size: 28px;
}

#fearlessbutton, #ironmanbutton, #randombutton{
  width: 150px;
  height: 30px;
  background-image: url(/images/webassets/draftbutton.png);
  background-size: 150px 30px;
  border: none;
  color: white;
  font-family: "Fugaz One", sans-serif;
  font-size: 14px;
}

#fearlessdiv, #ironmandiv, #randomdiv{
  margin: 20px 0px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

#fearlessdiv>*, #ironmandiv>*, #randomdiv>*{
  margin: 0px 10px;
}

#top8button{
  width: 200px;
  height: 40px;
  background-image: url(/images/webassets/draftbutton.png);
  background-size: 200px 40px;
  border: none;
  color: white;
  font-family: "Fugaz One", sans-serif;
  font-size: 14px;
  margin: 20px 0px;
}

#blue{
  background-color: #0070c0;
}

#red{
  background-color: #c00000;
}

#spec{
  background-color: black;
}

#discordmsg{
  background-color: #7289da;
}

#links h2{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  height: auto;
  width: auto;
  color: white;
  padding: 5px;
}

input[type='range']{
  accent-color: white;
}

/* Scrollbar Styles */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background-color: black;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #666666;
}
::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url(/images/webassets/scrollup.png);
}
::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url(/images/webassets/scrolldown.png);
}
::-webkit-scrollbar-button:single-button:horizontal:increment {
  background-image: url(/images/webassets/scrollright.png);
}
::-webkit-scrollbar-button:single-button:horizontal:decrement {
  background-image: url(/images/webassets/scrollleft.png);
}
::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  background-image: url(/images/webassets/scrollupclick.png);
}
::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  background-image: url(/images/webassets/scrolldownclick.png);
}
::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
  background-image: url(/images/webassets/scrollrightclick.png);
}
::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
  background-image: url(/images/webassets/scrollleftclick.png);
}