i probably need to improve the way i create the name of the CSS classes. and I'm most proud of having managed to place the footer at the bottom with flexbox (the footer wasn't part of the challenge, but I thought it would be better to do something with it) and it would probably be better to use more divs or other tags to avoid problems.
body {
background-color: hsl(47, 88%, 63%);
display: flex;
flex-direction: column;
height: 150vh;
justify-content: space-between;
}
What challenges did you encounter, and how did you overcome them?
I already answered this in the other question but it was definitely the footer, probably due to lack of content on the page it wasn't completely at the end, so I had to use flexbox and set the body height to 150vh
What specific areas of your project would you like help with?I would like to know if my choices of class names and tags are good (semantic)