body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #1f1f1f;
    background-image: linear-gradient(to bottom, #1f1f1f, #000000);
    background-repeat: repeat-x;
    animation: animated-bg 10s linear infinite;

    color: rgb(165, 166, 166);
  }
  h1 {
    text-align: center;
    font-size: 32px;
    /* color: #333333; */
    margin-top: 40px;
    margin-bottom: 20px;
  }
  p {
    font-size: 16px;
    color: #828282;
    margin: 20px auto;
    max-width: 600px;
    line-height: 1.5;
  }
  ul {
    margin: 40px auto;
    max-width: 600px;
  }
  li {
    font-size: 16px;
    color: #828282;
    margin-bottom: 10px;
  }
  a {
    color: #0077cc;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  @media (max-width: 600px) {
    h1 {
      font-size: 24px;
    }
    p {
      font-size: 14px;
    }
    li {
      font-size: 14px;
    }
  }

  .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr 0.25fr;
    grid-gap: 20px;
    margin: 0 auto;
    padding: 30px;
    max-width: 600px;
  }

  .grid-item {
    padding: 20px;
    grid-column: span 1;
    grid-row: span 1;
  }

  @keyframes animated-bg {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 50px 150px;
    }
  }

  .logo {
    height: 100px;
  }

  .c-logo{
    align-items: center;
    text-align: center;
  }

  .header {
    
  }

  .tos-container{
    align-items: center;
    text-align: center;
    padding-top: 40px;
    font-size: 0.75rem;
  }