#title__div {
    background: linear-gradient(45deg, #353d35, #1abdf3ec); /* Degradado diagonal de verde lima a azul claro */

    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 800px;
    text-align: center;
}

#welcome {
    color: rgb(69, 100, 100);
    font-family: sans-serif;
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
}

.list-abc {
    background-color: rgb(23, 131, 150);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(10, 60px);
    gap: 1.5rem;
    margin-top: 10rem;
}

.list-abc button {
    display: flex;
    font-size: 1.8rem;
    background: #88afce;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
}

button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(199, 197, 197, 0.15);
}

#word {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 50px;
    margin-top: 5rem;
    background-color: rgb(23, 131, 150);
}