:root{
  --container: 1120px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

body {
      margin: 0;
      font-family: 'League Spartan';
      background: #fff;
      color: #1a1a1a;
    }

    h1 {
      font-size: 3rem;
      font-weight: 800;
      margin: 1rem 0;
      align-self: center;
    }

    h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin: 0.5rem 0;
      align-self: self-start;
    }

    h5 {
      font-size: 1.25rem;
      font-weight: 800;
      margin: 0.2rem 0;
      align-self: self-start;
    }

    .remark {
      font-size: 0.9rem;
      font-weight: 800;
      margin: 0;
      display: inline-block;
    }

    header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 60px;
    }

    header .logo {
      font-size: 2.5rem;
      font-weight: bold;
      color: #e6005c;
    }

    #terms-of-service-container{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    #terms-of-service-section{
      text-align: left;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 1000px;
      padding: 5%;
    }

    ul{
      padding: 0;
      align-self: flex-start;
    }

    p, li {
      font-size: 18px;
      color: #444;
      text-align: justify;
      align-self: self-start;
    }

    /* Footer */
    footer{
      background: #0f172a;
      color: rgba(255,255,255,.75);
      padding: 64px 0 22px;
      font-size: 14px;
    }
    .footer-container{
      display:flex;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
      align-items:flex-start;
    }
    .footer-brand h3{
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .footer-brand p{
      color: rgba(255,255,255,.70);
      max-width: 520px;
    }
    .socials{
      display:flex;
      gap: 10px;
      margin-top: 16px;
    }
    .socials a{
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      transition: transform .18s ease, background .18s ease;
    }
    .socials a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.12);
    }

    .footer-bottom{
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 34px;
      padding-top: 18px;
      text-align:center;
      color: rgba(255,255,255,.62);
      font-size: 13px;
    }
    .footer-bottom a{
      color: rgba(255,255,255,.78);
      text-decoration:none;
      margin: 0 10px;
    }
    .footer-bottom a:hover{
      text-decoration: underline;
    }
