I have a problem in a div when centering text vertically using flex in CSS. When you put a span style, the text contained in the span jumps to another column!
.TEXT {height: 200px;
font-size: 20px;
text-align:center;
align-items: center;
display: flex;
justify-content: center;}
<!--Ejemplo erróneo al usar span-->
<div class="TEXT">My name is<br>Daniel<br><span style=" font-weight:400; color:red;">From Spain</span></div>
<!--Así es como debería ir el texto-->
<div class="TEXT">My name is<br>Daniel<br>From Spain</span></div>