body {
    background-color: #000;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Alinha os elementos verticalmente */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif;
    color: #fff;
}

.estrelas {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.estrela {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}

.cartao {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin-top: 20px; /* Adiciona margem superior para espaçamento do título */
}

.cartao h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.cartao p {
    font-size: 14px;
    color: #ccc;
}

.discord-icon {
    margin-top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

#tituloAnimado {
    font-size: 2em;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-family: monospace;
    white-space: nowrap; /* Impede a quebra de linha */
}

#cursor {
    animation: piscar 1s infinite step-start;
}

@keyframes piscar {
    50% {
        opacity: 0;
    }
}