body {
  background-color:#f8f8f8;
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  text-align: center;
  font-style: normal;
  font-size: 16px;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
}

h1 {
  color:#ec008e;
  font-size: 56px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", "Nunito Sans", sans-serifd;
}

h2 {
  color:#ec008e;
  font-size: 36px;
}

a:link {
  color:#ec008e;
}

a:visited {
  color:#86005f;
}

ul {
  display:flex;
  align-items: center;
  justify-content: center;
  padding:0px;
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date { 
  text-align: center; 
}

table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td{
  text-align: center;
}

table.dataTable th div.dt-column-header {
  flex-direction: row !important;
}

.page-wrapper {
  display: flex;
  flex-direction: row;
  width:100%;
  min-width:360px;

}

.sidebar {
  display: flex;
  align-items: left;
  padding-left: 1%;
  /*justify-content: center;*/
  flex-direction: column;
  /*height: 100%;*/
  width: 10%;
  min-width: 120px;
  order: 1;
  text-align: left;
  background-color: #ec008e;
}

.sidebar a:link {
  color:#ffffff;
}

.sidebar a:visited {
  color:#ffffff;
}

.sidebar ul {
  display:flex;
  align-items: left;
  justify-content: left;
  padding:2%;
  text-align: left;
}


.main-body{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1 0 auto;
  width: calc(90% - 120px);
  border-left: 2px solid #D7DBDD;
  order: 2;
}

.item-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.about-content{
  display: flex;
  align-items: center;
  font-size: 20px;
  width:calc(90% - 120px);
  max-width: 1200px;
  justify-content: center;
  flex-direction: column;
  border-left: 0px solid #D7DBDD;
  flex-wrap: wrap;
}

.item-image{
  display: flex;
  max-width: 50%;
  min-width: 200px;
}

.about-image{
  max-width: 50%;
  max-height: 120px;
  align-items: center;
}

.item-table {
  width:60%;
  max-width: 800px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  table-layout: fixed;
}

.about-table {
  width:90%;
  max-width: 1200px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  table-layout: fixed;
  border-spacing: 0;
}

.about-table td {
  align: center;
  justify-content: center;
  border-top: 1px solid #ec008e;
  padding-top: 10px;
  padding-bottom: 3px;
}

.chart {
  max-width: 1200px;
}

.note {
  font-style: italic;
  font-size: 12px;
}

#entries-table {
  width: 90%;
  max-width: 1600px;
}

.dt-input {
  font-family: "Nunito Sans", sans-serif;
}


.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 58%;
}

.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}


/* Mobile Layout */
@media (max-width: 768px) {
  .page-wrapper {
    flex-direction: column;
  }

  .sidebar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    order: -1;
    border-right: 0px;
    width: 100%;
    flex: 1 1 auto;
    font-size: 13px;
    padding: 0%;
  }

  .sidebar ul {
    display:flex;
    align-items: center;
    justify-content: center;
    padding:0%;
    text-align: center;
  }

  .main-body {
    width: 100%;
    border-top: 2px solid #D7DBDD;
    align-items: center;
    justify-content: center;
    border-left: 0px;
  }

  .item-table {
    width:90%;
    font-size: 18px;
  }

  #entries-table {
    font-size: 13px;
    text-align: center;
    --dt-order-arrow-width: 0px;
  }

  .dt-layout-start {
    font-size: 13px;
  }

  .dt-layout-end {
    font-size: 13px;
  }

  .dt-input {
    font-size: 13px;
    font-family: "Nunito Sans", sans-serif;
    --dt-input_padding: 4px 2px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  body {
    margin-left: 0px;
    margin-right: 0px;
  }

}