I once had a similar issue with the placement of the "Connect With Us" tab at the footer alongside other elements.
The reason why the "connect with us" button appears at the bottom is due to its CSS styling: position: fixed; bottom: -77px;
However, my current concern lies in achieving consistency in the content section of this website: . It needs to have a more cohesive look and feel.
Could you clarify what you mean by "more uniform"? If you desire for "the miami theory" to be centrally positioned within that area along with the background, you should include height: 100%;
to the .prj1
class. As its immediate child, .gray1
, has
height: 100%; display: flex; align-items: center; justify-content: center;
the sole descendant of
.gray1
, namely
.window1
(containing the text "the miami theory"), will be aligned both horizontally and vertically in the middle.