How can I relocate social media icons to the right side of my footer?

Is there a way to move the social media icons in my footer so that they are on the right hand side instead of centred at the bottom?

  1. Look for the code that generates the social media icons. It will likely be using HTML and CSS classes to style and position the icons.

  2. Modify the CSS classes to position the icons to the right. Add the following CSS code to the appropriate section of the file:

.footer-social-media {
  justify-content: flex-end;
}

thank you for your help - I have found the section of code you are talking about however it already contains the code you just sent me and my social media icons are still in the middle at the bottom