body {
    background-color: #1c1c29;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-transform: uppercase;
/*    text-shadow: 0 0 5px #00e6b8;*/
    font-size: 2rem;
}

input#tentativa {
    background-color: #262636;
    border: none;
    color: #00e6b8;
    padding: 0.75rem;
    font-size: 1rem;
    box-shadow: 0 0 8px rgba(0, 230, 184, 0.4);
}

input#tentativa:focus {
    outline: none;
/*    box-shadow: 0 0 12px rgba(0, 230, 184, 0.7);*/
}

.btn-primary {
    background-color: #00e6b8;
    border: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 0 8px rgba(0, 230, 184, 0.4);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background-color: #00ccb0;
    box-shadow: 0 0 10px rgba(0, 230, 184, 0.6);
}

.progress-bar {
    transition: width 0.6s ease;
    border-radius: 10px;
}

.list-group-item {
    background-color: transparent;
    border: none;
    color: #00e6b8;
    font-size: 1rem;
}

.alert-info {
    background-color: #262636;
    color: #00e6b8;
    border: 1px solid #00e6b8;
    font-size: 0.9rem;
}

.dica-icone {
    cursor: pointer;
    font-size: 2rem;
    color: #00e6b8;
    transition: color 0.3s;
}

.dica-icone:hover {
    color: #00ccb0;
}

footer p {
    color: #ffffff88;
    font-size: 0.8rem;
}

.container {
    max-width: 650px;
}
#tentativa::placeholder {
    color: white;
    opacity: 1;
}

#tentativa {
    color: white;
}

.categoria-text {
    margin: 0;
    font-weight: bold;
    padding-bottom: 30px;
}

#listaCategorias {
    display: flex;
    justify-content: center; /* Centraliza os itens horizontalmente */
    gap: 10px; /* Espaçamento entre os itens */
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#listaCategorias li {
    padding: 10px;
    border: none; /* Remove a borda de cada item */
    background-color: transparent; /* Deixa o fundo transparente */
}

#listaCategorias li a {
    color: #00e6b8;
    text-decoration: none;
}

#listaCategorias li a:hover {
    text-decoration: underline;
}