Добро пожаловать в StackOverflow! Вы пытались удалить коды, которые я удалил между этими строками? Вероятно, это решит вашу проблему.
html, body, header, nav, section, footer {
scroll-behavior: smooth;
background-color: #ededed;
}
Пример:
/* html, body, header, nav, section, footer{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Cairo', sans-serif;
scroll-behavior: smooth;
background-color: #ededed;
} */
* { /* If you set the width height value for all elements, there will be problems. You can use this to remove all margin and padding values on the page. */
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
position: relative;
}
section {
margin-top: 7.5rem;
display: flex;
align-items: center;
justify-content: center;
height: 880px;
}
footer {
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
height: 150px;
width: 100%;
background-color: #474747;
}
@media screen and (max-width:1024px) {
section {
height: 1000px;
}
}
<body>
<section>
<div class="section1">
Sections
</div>
</section>
<footer>
Footer Area
</footer>
</body>