Well, it depends on how you want it to look. Which I’m not sure about. Here is one way.
HTML:
<div class="pastries-1" id="about">
<!-- Container for the h4 and icon -->
<div class="icon-content">
<img src="https://img.icons8.com/wired/64/000000/pink-macaroon.png">
<h4>Succulent Sweets</h4>
</div>
<p>These melt-in-your-mouth macaroons are made of the finest ingredients, and dazzle your senses.</p>
</div>
CSS:
.pastries-1 {
margin-top: 200px;
display: flex;
justify-content: center;
/* Vertical align */
align-items: center;
/* Wrap on small screens */
flex-wrap: wrap;
}
/* Center h4 and icon and some right margin */
.icon-content {
text-align: center;
margin-right: 40px;
}
You can use this for the video. When you want the code for the video, on youtube press the share button and select the embed option.