JSFiddle - React, Tailwind, and code Playground
by swordys
HTML
<div class="laura1">
<img class="laura" src="https://placeimg.com/150/150/people">
<p id="text1">Laura - L2 Coordinator, graphic designer and dance enthusiast.
</p>
</div>
CSS
body {
background: orange;
width: 500px;
}
.laura1 {
width: 75%;
height: 150px;
background-color: white;
margin-left: 50px;
margin-top: 30px;
display: flex;
align-items: center;
}
.laura {
width: 150px;
height: 150px;
}
#text1 {
font-size: 12.5px;
padding: 0 20px;
text-align: center;
color: black;
}