JSFiddle - React, Tailwind, and code Playground

HTML

<div id="contact"><h1>CONTACTO</h1>
    <p>+(351) 887 888 237&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+(351) 884 569 018<br><br></p>
        <a href="mailto:[email protected]" target="_blank">[email protected]</a><br><br><p>
	Avenida da RepĂşblica, Torre Soleil

</p></div>

CSS

#contact {
	width: 50%;
	float: left;
	background-color: #449DCC;
	height: 350px;
}
#contact h1 {
	color:#fff;
    font-size:18
}
#contact p {
	float: right;
	margin-right: 25px;
	font-size: 15px;
	color:#fff;
}
#contact a {
	float: right;
	font-size: 15px;
    margin-right: 25px;
	color:#fff;
	text-decoration: underline;
}