.container{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
  }
  
  body{
    background-color: rgb(130, 130, 130);
  }
  
  #start-button{
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-65%, -50%);
    font-family: scandia-web, sans-serif;
    /*padding: 10px 24px;*/
    border-radius: 12px;
    background-color: #000000;
    color: white;
    width: 100px;
    height: 40px;
  }
  
  h1{
    font-size: 40px;
    color: rgb(232, 232, 234);
    font-family: scandia-web, sans-serif;
    background: rgb(199, 42, 113);
    border-radius: 10px 10px 0px 0px;
    padding: 5px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0%;
  }
  
  h3{
    font-size: 30px;
    color: rgb(232, 232, 234);
    background: rgb(0, 83, 208);
    border-radius: 0px 0px 10px 10px;
    padding: 5px;
    text-align: center;
    font-family: scandia-web, sans-serif;
    border: 5px;
    margin-top: 0%;
  }
  
  .grid{
    width: 200px;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(0, 0, 0);
  }
  
  .grid div {
    height: 20px;
    width: 20px;
  }
  
  .tetrimino{
    background-color: black;
  }
  
  .mini-grid{
    width: 80px;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(0, 0, 0);
    margin-left: 50px;
  }
  
  .mini-grid div{
    height: 20px;
    width: 20px;
  }
  
  .scoreboard{
    font-family: scandia-web, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
  }
  
  .scoreboard div{
    font-family: scandia-web, sans-serif;
    float: left;
    /*background-color: purple;*/
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    text-align: center;
    font-size: large;
    font-weight: bold;
    padding-bottom: 1rem;
  }
  
  #initial1 div{
    float: none;
  }
  
  #date1 div{
    float: none;
  }
  
  #score1 div{
    float: none;
  }
  
  #place div{
    float: none;
    margin-right: 0px;
  }
  
  h2{
    font-family: scandia-web, sans-serif;
    text-align: center;
  }
  
  #score7{
    color: rgb(0, 83, 208);
  }
  
  .scoreboard{
    color: rgb(232, 232, 234);
    background-color: black;
    margin-top: 40px;
  }

  #first{
    background-color: gold;
    color: black;
  }
  
  #second{
    background-color: silver;
    color: black;
  }

  #third{
    background-color: #CD7F32;
    color: black;
  }
  
  #lb{
    background-color: black;
  }

  .lbhead{
    font-size: 40px;
    color: rgb(232, 232, 234);
    font-family: scandia-web, sans-serif;
    background: rgb(16, 0, 135);
    border-radius: 20px;
    padding: 10px;
    margin-top: 50px;
    text-align: center;
  }
  
  #return{
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-family: scandia-web, sans-serif;
    width: 200px;
    height: 60px;
    margin-top: 30px;
    font-size:x-large;
    font-weight: bolder;
    border-radius: 40px;
  }
  
  #hscore{
    color: rgb(0, 83, 208);
    margin-bottom: 8px;
  }
  #rules{
    text-align: center;
    padding: 0%;
    background-color: black;
    color: white;
    position: absolute;
    border: 5px;
    border-radius: 10px;
    padding: 15px;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  h2{
    margin-bottom: 10px;
  }
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .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: rgb(0, 83, 208);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  .sliderContainer{
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(110%, -75%);
    padding: 10px;
    border: 2px solid #000000;
  }
  #slideText{
    margin: 0%;
    padding: 0%;
    text-align: center;
    font-weight: bold;
    font-size: large;
  }
  #lbbutton{
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-165%, -50%);
    font-family: scandia-web, sans-serif;
    /*padding: 10px 24px;*/
    border-radius: 12px;
    background-color: #000000;
    color: white;
    width: 100px;
    height: 40px;
  }
  
  