* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
}

header {
  background: #111;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

nav a:hover {
  background: #00c853;
}

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
}

.home-image{
width:100%;
height:500px;
object-fit:cover;
display:block;
}



.site-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:black;
color:white;
position:relative;
}

.nav{
display:flex;
gap:15px;
}

.nav a{
color:white;
text-decoration:none;
}

.burger{
display:none;
font-size:26px;
background:none;
border:none;
color:white;
cursor:pointer;
}

/* Mobile */

@media (max-width:600px){

.burger{
display:block;
}

.nav{
display:none;
position:absolute;
top:60px;
left:0;
right:0;
background:black;
flex-direction:column;
padding:10px;
}

.nav.open{
display:flex;
}

}