h1,h2,h3,h4,h5,h6{
    font-family: "josefin sans";
    text-align: center;
    float:left;
    width:100%;
}
h1{
    float:left;
    width:100%;
}
#content{
    width: fit-content;
    max-width: 1033px;
    margin: auto;
}
#lists {
    display: inline-block;
    width:100%;
}
#lists>div{
    background-color: #00D647;
    width:calc(50% - 32px);
    float:left;
    border: 2px #888 solid;
    border-radius: 10px;
    padding: 10px;
    margin: 4px;
}
table,svg{
    float: left;
}
canvas, #warningBox {
  margin: 0 calc((100% - 788px)/2);
}
a{
    color: #FFFF31;
    font-family: "Segoe UI";
    text-decoration: none;
    text-align: center;
    width:100%;
}
li{
    overflow: hidden;
    text-align: center;
    margin: 1px 2px;
    padding: 2px;
    background: #009B34;
    border-radius: 4px;
    border: 1px solid #00571D;
    width:calc(100% - 10px);
    float:left;
}
li:hover {
    background: #00822B;
}
li:nth-child(n+5) {
    display:none;
}
li:last-child {
    display: list-item;
}
ul{
      list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

#lists>#toDoFollowers {
    background-color: #00B2B9;
}
#lists>#toBeEvaluated {
    background-color: #FF3FB4;
}
#lists>#toDoInteraction {
    background-color: #AAAA00;
}
#content li{
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(0,0,0,0.75);
}
#content li:hover {
    background: rgba(0,0,0,0.35);
}
#LikeCounts p {
  float: left;
  text-align: right;
  margin: 3px 7px;
  font-family: "DankMono-Regular";
}
#LikeCounts p.statTitle {
    text-align: right;
}
#LikeCounts p.stat {
    text-align: left;
}
#LikeCounts div {
  margin:auto;
  float:left;
}
#LikeCounts {
  width: 816px;
  margin: 0 auto; 
}
#warningBox {
  min-height: 40px;
  width: 788px;
  position: fixed;
  background: #F00;
  bottom: 40px;
  border-radius: 18px;
}
#warningBox p {
  text-align: center;
  font-family: "Segoe UI";
}
.hidden {
  display: none;
}


/* The switch - the box around the slider */
.switch {
  position: absolute;
  float: right;
  right:0px;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0.67em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}