JSFiddle - React, Tailwind, and code Playground

by Cristian Marcel

HTML

<div class="feature-draw">
    <div class="feature-lighting">
        <div class="lightning"></div>
    </div>
    <div class="feature-circle">
        <div class="feature-column">
            <h3>Features</h3>
            <p>jfklds</p>
            <p>jfklds</p>
            <p>jfklds</p>
            <p>jfklds</p>
            <p>jfklds</p>
            <p>jfklds</p>
            <p>At vero EOS</p>
        </div>
    </div>    
</div>

CSS

.feature-draw {
    background: red;
    width: 450px;
}
.lightning {
    background: blue;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 35%;
    transform: rotate(20deg);
}
.feature-circle {
    display: flex;
    border: 15px solid green;
    justify-content: center;
    border-radius: 50%;
   width: 350px;
   height: 350px;
    margin: 0 auto;
}
.feature-column {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 35px;
}
.feature-column p, .feature-column h3 {
    flex: 1;
    text-align: center;
}