Html – Inner shadow in text using css
.leftSide > p { font-size: 170px; font-family: 'QuickSand'; text-align: end; color: #2A2A2A; -webkit-background-clip: text; background-clip: text; text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25), -1px -1px 5px rgba(0, 0, 0, 0.25); } <div className={styles.leftSide}> <p>A</p> </div> So I have this…