You can wrap the two phrases in separate elements and use a media query to stack them on different lines after a certain breakpoint
@media only screen and (max-width: 600px) {
span {
display:block;
}
}
<span>Hello there Mr Nemesis X,</span> <span>welcome to the interwebs!</span>