/* Reset básico */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #1E1E2C;
    color: #fff;
    position: relative;
  }
  
  /* Partículas */
  #particles-js {
    position: absolute; /* Fixa o container no fundo */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Garante que as partículas fiquem abaixo do conteúdo */
  }
  
  /* Conteúdo central */
  .content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1; /* Garante que o conteúdo fique acima das partículas */
  }
  
  .content h1 {
    font-size: 8rem;
    margin: 0;
    color: #4FC3F7;
  }
  
  .content p {
    font-size: 1.5rem;
    margin: 20px 0;
  }
  
  .content a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background: #4FC3F7;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .content a:hover {
    background: #0288D1;
  }