Survey Form Layout Issues

I don’t know how to make everything be aligned like it does in the example. Any feedback would be appreciated thanks.

Codepen Survey Form

You made every thing centred by applying text-align: center; in the html selector which is the parent of all children so all the element will inherit this property from html

html{
  font-family: 'Open Sans', sans-serif;
  line-height: 2;
  text-align: center;
}

Try to center align only the elements you want

By the way you did an excellent work :clap:

2 Likes