<div class="wrapper">

    <h1>Bringing Your<br /> <span class="sf-circled-highlight">Vision</span> to Life</h1>

</div>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #212121;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 30px;
  text-align: center;
}

h1 {
    font-size: clamp(30px,5vw, 6rem);
    line-height: 1.2;
    font-family: Inter;
    font-weight: 700;
    color: #fff;
}

/* ---------------------------------------- */
/*  Snippflow Circled Highlight Text Effect */
/* ---------------------------------------- */

.sf-circled-highlight{
    position:relative;
    z-index: 1;
}
.sf-circled-highlight:before,
.sf-circled-highlight:after{
    content: "";
    width: 120%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: -10%;
    z-index: -1;
    border-radius: 100%;
    box-sizing: border-box;
}
.sf-circled-highlight:before {
    border: 0.3vw solid #63D9B3;
    transform: rotate(-2deg);
}
.sf-circled-highlight:after{
    border: 0.1vw solid #63D9B3;
    transform: rotate(2deg);
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.