*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/images/pexels-eberhardgross-707344.jpg);
  background-size: cover;
  background-position: center;
  margin-left: 50px;
  margin-top: 20px;
}

.logo h2{
  color: orangered;
  font-size: 36px;
}

nav{
  display: flex;
  justify-content: space-between;
  align-items: center;

}

nav .menu-list a{
  margin-left: 50px;
  font-size: 16px;
  color: white;
  text-decoration: none;
  list-style: none;
}
.search-area{
  border: 1px solid orangered;
  /* padding: 10px 0px; */
  border-radius: 5px;
  margin-right: 30px;
  width: 28rem;
  display: flex;
}
.search-area input{
  background-color: transparent;
  border: none;
  padding-block: 10px;
  outline: none;
  margin-left: 10px;
  color: white;
  width: 70%;
}

.search-area button{
  background-color: #f35613;
  color: white;
  border: none;
  outline: none;
  padding: 10px 0px;
  height: 100%;
  width: 30%;
}

.hero-detail{
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.hero-content h2{
  font-size: 36px;
  color: white;

}
.hero-content h1{
  font-size: 48px;
  color: #f35613;
}
.hero-content p{
  font-size: 16px;
  color: white;
  margin-top: 20px;
}
.hero-content button{
  margin-top: 30px;
  background-color: #f35613;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 8px 10px;
  color: white;
}
form{
  width: 300px; height: 400px;
  /* border: 2px solid red; */
  background-color: #121212;
  padding: 20px;
  margin-right: 50px;
  
}
form input{
  margin-left:9px ;
  width: 250px;
  height:40px;
  padding: 5px;
  margin-top: 5px;
  /* margin-right: 120px; */
  border-radius: 5px;
  align-items: center;
  
}
form p{
  margin-top: 8px;
  color: white;
  text-align: center;
}
form h3{
  color: white;

}
form button{
  background: white;
    width: 150px;
    height: 30px;
    margin: 15px 50px 3px;    
    border-radius: 10px;
    background:orangered;
    color: black

}
