* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
}

body {
  background-color: #fffaf1;
}

nav {
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo {
  width: 200px;
  height: 60px;
}
nav .menu img {
  width: 80px;
  height: 30px;
  margin-right: 10px;
}
nav .search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
nav .search img {
  transform: scale(0.7);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: #7e6a57;
  padding: 60px 0 40px 0;
}
footer .logo {
  width: 300px;
  height: 60px;
  margin-bottom: 40px;
}

.container {
  margin: 0 auto;
  padding: 0 60px;
}/*# sourceMappingURL=public.css.map */