Hello Eliary,
Please try adding the following custom CSS on Appearance > Customize > Custom > Edit Global CSS:
a:focus, select:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="submit"]:focus, input[type="checkbox"]:focus {
outline: none !important;
}
That might not work because you do have extra closing tag in your current custom CSS. Please check this part:
.tagline {
/*color: black;*/
font-size: 2.25em;
}
}
Please remove the extra closing curly brace. That is considered syntax error in CSS. Should be like this:
.tagline {
/*color: black;*/
font-size: 2.25em;
}
Hope this helps.