How come my h1 does not resize like my features list? I did not add any resize elements in CSS for the features section, but it resizes by itself. How come the h1 element does not resize by itself as well?
How come my iframe is not being responsive? How do I make it so that it doesnt cover the navbar while resizing?
header {
z-index: 1; /* Any value 1 or above */
top: 0;
width: 100%;
display: flex;
}
Since by default items on the page have a z-index of zero, giving a z-index of 1 to the header make sure it overlaps all items with a z-index of zero and below.