I observed different strategies for how create a solo project layout. Some folks use plenty of divs with padding/margins to try to match the Figma. Others use padding within a container to place a flex and then use flex gap to control the spacing / vertical layout between elements
Example | Live code https://scrimba.com/fullstack-path-c0fullstack/~09t/s0mog4vr2t/head
.converter {
height: 285px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 30px;
padding: 32px 50px;
}
What is your strategy / best practice to layout a page like this?