* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: black;
}

nav {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
}
nav::before {
  content: "";
  background-color: black;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  opacity: 0.38;
}

nav .logo {
  margin: 10px 34px;
  border: 1px solid red;
  border-radius: 262px;
}
.logo img {
  margin: 3px 6px;
}
nav li {
  list-style: none;
  font-size: 1.3rem;
}
nav li a {
  /* color: white; */
  display: block;
  padding: 3px 22px;
  color: white;
  border-radius: 20px;
}
nav li a:hover {
  color: white;
  background-color: black;
}

#home_page_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 200px;
  height: 550px;
  justify-content: center;
}
#home_page_content::before {
  content: "";
  position: absolute;
  /* background: url(.//bg1.jpg); */
  background: url(https://images.unsplash.com/photo-1513104890138-7c749659a591?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8cGl6emF8ZW58MHx8MHx8&auto=format&fit=crop&w=500&q=60);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0px;
  height: 642px;
  left: 0px;
  width: 100%;
  opacity: 0.89;
  z-index: -1;
}
#home_page_content h1 {
  color: white;
  font-size: 3rem;
  font-family: monospace Arial, Helvetica, sans-serif;
}
#home_page_content p {
  color: white;
  font-size: 1.5rem;
}
#home_page_content button {
  background-color: tomato;
  padding: 3px 15px 3px 15px;
  font-size: 1.1rem;
  border-radius: 10px;
  color: white;
  position: relative;
  top: 15px;
  border: 2px solid black;
  cursor: pointer;
}
#home_page_content button:hover {
  background-color: black;
  color: white;
  border: 2px solid red;
}
#services {
  margin: 33px;
}

#services h2 {
  text-align: center;
  margin-bottom: 15px;
}
/* #services p{
        justify-items: center;
    } */
.boxes {
  display: flex;
  text-align: justify;
}
.food {
  border: 2px solid brown;
  padding: 30px;
  margin: 2px 15px;
  border-radius: 28px;
  background-color: #f2f2f2;
  margin-bottom: 20px;
  /* transition-property: all;
        transition-timing-function: ease-in;
        transition-duration: 2s; */
}
/* .food:hover{
        box-shadow: 10px 10px 5px 7px red;
    } */

.food:hover {
  /* transform: translate(20px, 0px); */
}

.food h4 {
  text-align: center;
  padding: 10px;
}
.food img {
  height: 160px;
  margin: auto;
  display: block;
}
#clients h2 {
  text-align: center;
  margin-bottom: 25px;
}
.clients-logo {
  display: flex;
  /* justify-content: center; */
  justify-content: space-around;
}

.clients-logo img {
  height: 125px;
  margin: 20px;
}
#clients::before {
  content: " ";
  background: url(.//bg.jpg);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

#contact {
  position: relative;
}
#contact h1 {
  text-align: center;
}
form {
}
#contact::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  background: url(contact.jpg) no-repeat center center/cover;
}
.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
}
.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 9px;
  font-size: 1.1rem;
}
.contact-box form {
  width: 40%;
}

.contact-box label {
  font-size: 1.3rem;
}
.contact-box input[type="submit"] {
  background-color: coral;
  border-style: none;
  padding: 10px;
  font-size: 1.5rem;
  border-radius: 10px;
  margin: 15px auto;
  color: white;
  background-color: brown;
}
footer {
  padding: 20px;
  background: black;
  text-align: center;
  color: white;
  font-size: 1.3rem;
}
