I am currently working on the third project for Responsive Web Design Certification on freecodecamp.org, its a landing page. I just cannot figure out why this header is not fillingup the entire horizontal screen. Can you please help me?
Following is the CSS for header;
header {
position: fixed;
top: 0;
min-height: 75px;
padding: 0px 20px;
display: flex;
justify-content: space-around;
align-items: center;
}
img {
width: 150px;
color: white;
}
#header {
position: fixed;
top: 0;
min-height: 75px;
padding: 0px 20px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #eee;
}
nav > ul {
display: flex;
flex-direction: row;
}
