body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #0c062e, #060a42);
    color: #f1f0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .container {
    max-width: 600px;
    padding: 40px 20px;
  }
  
  h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  p {
    font-size: 1.0rem;
    color: #cccccc;
    margin-bottom: 20px;
  }
  
  .logo {
    width: 100px;
    margin-bottom: 30px;
    border-radius: 50%;
  }
  
  .btn {
    background-color: #FE3030;
    border: none;
    padding: 12px 24px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #6336cc;
  }
  
  footer {
    padding: 20px;
    font-size: 6px; /* tamanho menor em pixels */
    color: #777777;
    text-align: center;
    line-height: 1.4;
  }

  footer p {
    font-size: 10px; /* ou o tamanho que quiser */
    line-height: 1.4;
  }
  
  
  