*{
    margin:0px;
padding: 0px;
box-sizing: border-box;
font-family: "dm-sans" sans-serif;
}
body {
    background-color: bisque;
}
.hero{ 
    background-color: bisque;
    overflow: hidden;
}
.heading {
color: brown;
font-size: 55px;
text-align: center;
margin-top: 35px;
}
.container{
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100;
margin: 65px auto;
}
.hero-content{
    flex:1;
    width: 600px;
    margin: 0px 25px;
}

.hero-content h2 {
font-size: 38px;
margin-bottom: 20px;
color:brown;
}
.hero-content p {
    font-size: 24px;
    line-height: 1.5;
    color: brown;
    margin-bottom: 30px;
}
.hero-content button{
    display: inline-block;
    padding: 12px 30px;
    background-color: brown;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}
.hero-content button:hover {
    background-color: #5a2c2c;
    transform: scale(1.1);
}

.hero-image{
    flex:1;
    width: 600px;
    margin: auto;
}

img{
    width: 100%;
height: auto;
border-radius: 10px;
}

 header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px;
       border-bottom: 1px solid brown;
}
.navbar {
  height: 20%;

}
  nav ul {
       display: flex;
       list-style: none;
       gap: 20px;
       padding: 0;
       margin: 0;
}

  nav a {
  text-decoration: none;
  color: brown;
}

footer {
  padding: 30px;
  text-align: center;
  color: brown;
    border-top: 1px 
}