The use of
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
is a bad idea in general, because it applies to everything in the page, making this snippet of code unusable in other components. It would be better to say in this section exactly what things you need this on.