/* Universal settings for background, text color, and font */
html {
    height: 100%;
  }
  
  body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, black, #17162F);
    background-attachment: fixed;
    color: #C2C2C2;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Header styles common to all pages */
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .icon {
    width: 100px;
    height: auto;
  }
  
  .title {
    font-size: 2rem;
  }
  
  /* Centering content for homepage */
  .homepage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Privacy Policy Text Formatting */
  .policy-content {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    font-size: small;
  }
  .policy-content ul {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
  }
  
  .subheading {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .footer-img {
    width: auto;  
    max-width: 80px;  /* Make the image small */
    height: auto;
    margin: 20px auto;
    display: block;
  }
  
  @media screen and (max-width: 800px) {
    .policy-content {
      padding: 0 20px;
    }
  }

  