I'm in the process of creating a footer for my website and I've decided to utilize flexbox for the layout. Below is the CSS code I am using for my footer:
.footer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 5vh;
background-color: transparent;
color: white;
text-align: center;
}
Here's how it currently appears:
https://i.stack.imgur.com/niBsv.png
There seems to be excessive space between the elements. What steps can I take to reduce this spacing?
If more details are required, feel free to leave a comment.
Thank you in advance!