Po najechaniu na moje przyciski w sekcji nav powoduje to ze sekcja dolna header sie rusza, jak to naprawić ?
*
{
margin: 0;
padding: 0;
}
/* SEKCJA NAWIGACJA HEADER */
nav
{
max-width: 1440px;
margin: 15px auto;
text-align: right;
}
nav a
{
font-size: 22px;
text-decoration: none;
display: inline-block;
color: black;
font-family: 'Roboto', sans-serif;
padding: 10px;
margin: 0 30px;
}
nav a:hover
{
border-bottom: 1px solid black;
}
/* SEKCJA HEADER */
header
{
height:540px;
background-color:rgb(255,88,81);
}
header h1
{
text-align: center;
margin-top: 30px;
font-size: 18px;
font-weight: normal;
}
header h2
{
text-align: center;
font-size: 40px;
margin-top: 30px;
font-weight: bold;
}
header p
{
padding-top: 30px;
text-align: center;
font-size: 70px;
font-weight: bold;
}
header img
{
width: 500px;
height: 400px;
float: right;
margin-top: -220px;
}
/* SEKCJA MAIN */
main
{
max-width: 1440px;
background-color: #f2f1ed;;
}
main .tech
{
text-align: center;
font-size: 30px;
font-weight: bold;
padding-top: 30px;
}
main p.description
{
font-size: 20px;
text-align: center;
margin: 30px 30px 50px 30px;
padding-bottom: 30px;
}
/* SEKCJA PROJEKTY */
main div.project
{
display: inline-block;
width: 33%;
}
main h2
{
font-size: 16px;
text-align: center;
padding-bottom: 30px;
}
main div.img
{
height: 200px;
background-color: burlywood;
margin: 20px 30px;
}
/* SEKCJA STOPKA FOOTER */
footer
{
background-color: #f2f1ed;
color: black;
text-align: center;
font-size: 10px;
height: 20px;
}
<body>
<nav>
<a href="aboutme.html" target="_blank">About Me</a>
<a href="#1">Projects</a>
<a href="aboutme.html" target="_blank">Contact</a>
</nav>
<header>
<p>HELLO.</p>
<h1>Projects</h1>
<h2>My Projects </h2>
<img src="headerpicture.png" alt="header picture">
</header>
<main>
<h2 class="tech">My Technologies</h2>
<p class="description">
.
</p>
<section class="projects" id="1">
<div class="project">
<div class="img"></div>
<h2>Personal Portfolio</h2>
</div>
<div class="project">
<div class="img"></div>
<h2>Hotel Website</h2>
</div>
<div class="project">
<div class="img"></div>
<h2>Restaurant Website</h2>
</div>
</section>
</main>
<footer>
<p>Copyright ©</p>
</footer>
</body>