.page_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.terms_container {
    max-width: 1200px; 
    width: 100%;
    background-color: #334;
    padding: 10px;
    border-radius: 5px;
}

.page_section h2 {
  text-align: center;
  font-family: 'Anybody', cursive;
  padding: 8px;
  margin: 0;
  color: rgb(255, 250, 175);
  transition: 0.2s;
}

#page_section_text p{
  text-align: justify;
  text-indent: 15px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Anybody', cursive;
  text-shadow: -1px -1px 1px #020202;
}

#page_section_text li{
  text-align: justify;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Anybody', cursive;
  text-shadow: -1px -1px 1px #020202;
}

.page_section h3 {
    text-align: justify;
    width: 90%;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Anybody', cursive;
    color: rgb(255, 250, 175);
    text-shadow: -1px -1px 1px #020202;
}

.terms-list {
  list-style: none;
  padding-left: 0;
}

.terms-list > li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 4px;
}

.terms-list > li::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  font-family: 'Anybody', cursive;
  font-weight: bold;
}

.terms_container p a,
.terms_container li a{
    color: rgb(116, 181, 184);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.terms_container p a:hover,
.terms_container li a:hover{
    color: rgb(142, 207, 211);
}

@media (min-width: 2200px) {
  #page_section_text p,
  #page_section_text li{
    font-size: 16px;
    letter-spacing: 1px;
  }

  .page_section h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }

}

@media (min-width: 1850px) and (max-width: 2199px) {

  #page_section_text p,
  #page_section_text li{
    font-size: 16px;
    letter-spacing: 1px;
  }

  .page_section h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  h3 {
    font-size: 24px;
    letter-spacing: 2px;
  }
}

@media (min-width: 1500px) and (max-width: 1849px) {

  #page_section_text p,
  #page_section_text li{
    font-size: 16px;
    letter-spacing: 1px;
  }

  .page_section h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

@media (min-width: 800px) and (max-width: 1500px) {

  #page_section_text p,
  #page_section_text li{
    font-size: 14px;
    letter-spacing: 1px;
  }

  .page_section h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }

}

@media (min-width: 460px) and (max-width: 799px) {
  #page_section_text p,
  #page_section_text li{
    font-size: 12px;
    letter-spacing: 1px;
  }

  .page_section h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }

  h3 {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

@media (max-width: 459px) {

  #page_section_text p,
  #page_section_text li{
    font-size: 12px;
    letter-spacing: 1px;
  }

  .page_section h2 {
    font-size: 18px;
    letter-spacing: 1px;
  }

  h3 {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

.last_updated{
  text-align: center;
  margin-top: -8px;
  margin-bottom: 10px;
  font-style: italic;
  font-family: 'Anybody', cursive;
}