SCSS
body {
font-family: Helvetica, Arial, sans-serif;
text-transform: uppercase;
min-height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
p {
font-size: 4rem;
width: 13rem;
font-weight: bolder;
border: 5px double;
padding: 2rem;
word-break: break-word;
background: #333;
color: #fff;
-ms-word-break: break-all;
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}