/* Aumentar o contraste do texto */
.txtacessivel {
    background-color: #f9f9f9; /* fundo claro */
    color: #333; /* texto escuro */
    padding: 20px; /* espaço interno */
    border-radius: 5px; /* bordas arredondadas */
    font-size: 1.1em; /* aumentar o tamanho da fonte */
}

/* Tamanhos de fonte ajustáveis */
body {
    font-size: 100%; /* tamanho padrão */
}

/* Aumentar o tamanho da fonte */
body.large-font {
    font-size: 120%; /* 20% maior */
}

/* Diminuir o tamanho da fonte */
body.small-font {
    font-size: 80%; /* 20% menor */
}

/* Estilizar os links */
.txtacessivel a {
    color: #007bff; /* cor do link */
    text-decoration: underline; /* sublinhar o link */
}

.txtacessivel a:focus, .txtacessivel a:hover {
    color: #0056b3; /* cor do link ao passar o mouse ou focar */
    outline: 2px solid #0056b3; /* adicionar contorno ao foco */
}