To align the columns horizontally within the container, you can use CSS flexbox. Here's an example:
.container {
display: flex;
justify-content: space-between;
}
In this example, the CSS code applies the display: flex;
property to the container and justify-content: space-between;
property to evenly distribute the columns with space between them. This creates a horizontal alignment for the columns.