body {
    overflow-x: hidden;
    font-size: 100%;
    margin: 0;
    padding: 0;
}


  .Header-Container{
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    align-items: center;
    font-family: 'Architects Daughter';
    font-size: 35px;
  }
  .Main-Header{
    position: relative;
    top: 90px;
  }

  /*Tables*/

  .Table-Container{
    position: relative;
    margin: auto;
    top: 130px;
    width: 96%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 20% 80%;
    color: white;
    font-family: Helvetica;
    border: 0px solid white;
    border-radius: 2px;
    border: 1px solid white;
    box-shadow: rgba(75, 92, 133) 0px 1px 7px,
                rgba(75, 92, 133) 0px -1px 7px;
                  ;
  }

  .Legend{
    font-size: 25px;
    font-weight: bolder;
    background-color: rgb(75, 92, 133);
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid white;
  }
  .Round{
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 2px;
  }
  .Times{
    display: flex;
    align-items: center;
    border-top-right-radius: 2px;
  }
  .row{
    font-size: 20px;
    height: 30px;
  }
  .row1-Background{
    background-color: rgba(29, 28, 27, 0.904);
  }
  .row2-Background{
    background-color: rgba(46, 44, 44, 0.651);
  }



@media (max-width:600px) {
  .Table-Container{
    grid-template-columns: 30% 70%;
  }
}

@media (max-width:500px) {
  .Header-Container{
    font-size: 30px;
  }
}

@media (max-width:450px) {
  .Table-Container{
    grid-template-columns: 40% 60%;
  }
}


@media (max-width:400px) {
  .Header-Container{
    font-size: 22px;
  }
  .Legend{
    font-size: 19px;
  }
  .row{
    font-size: 16px;
  }
}


