* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.2s ease;
  cursor: default;
  font-family: "Poppins", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

body {
  background: #fff;
}

a {
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}
a * {
  cursor: pointer;
}

header {
  padding: 10px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1450980392);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
header .nav-bar .logo {
  margin-top: 10px;
  max-height: 30px;
}
header .nav-bar input {
  padding: 5px 10px;
  border-radius: 50px;
  outline: none;
  border: 1px solid #000;
  width: 60%;
}
header .nav-bar .iconsNav i {
  font-size: 30px;
}
header .nav-bar .iconsNav #closeIcon {
  display: none;
}
header #categories {
  border-top: 1px solid #f1f1f1;
  margin-top: 10px;
  padding: 20px 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header #categories button {
  background: none;
  border: none;
  text-align: center;
  font-weight: normal;
  width: 100%;
  cursor: pointer;
}

main {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .fiche {
  border: 1px solid rgba(0, 0, 0, 0.1450980392);
  border-radius: 10px;
  padding: 10px;
  background: #f1f1f1;
  cursor: pointer;
}
main .fiche:hover {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1450980392);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1450980392);
}
footer * {
  font-size: 12px;
}/*# sourceMappingURL=index.css.map */