* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
.header {
  /* border-bottom: 1px solid #ddd; */
  box-shadow: 10px 10px 30px #e0dddd;
  position: absolute;
  width: 100%;
  background: #ffffffe8;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
.nav__collection {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  color: #0866ff;
  font-size: 34px;
}
.nav__collection {
  color: #42b72a;
  font-size: 18px;
}
li:hover {
  text-decoration: underline;
}
/* hero */
.hero {
  background: url(../assets/77e02691fe15c31de275852f616e7bab.jpg) no-repeat
    center;
  background-size: cover;
  min-height: 800px;
}

/* hero end */
