JSFiddle - React, Tailwind, and code Playground

by Rozina Szogyenyi

HTML

<div class="awesome-container">
    <p>css is awesome</p>
</div>

CSS

.awesome-container {
    width: 125px;
    height: 125px;
    text-transform: uppercase;
    border: 3px solid #4679bd;
    font-family: sans-serif;
    overflow: visible;
    padding: 10px 5px 0 5px;
    
}

.awesome-container p {
    color: #4679bd;
    word-spacing: 100px;
    font-size: 37px;
    line-height: 110%;
    margin: 0;
    letter-spacing: 2px;
}