/* http://meyerweb.com/eric/tools/css/reset/ 2. v2.0 | 20110126
  License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.header {
  display: flex;
  width: 96.4%;
  justify-content: space-between;
  margin: 40px;
}

.icon {
  font-size: 35px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.link {
  display: flex;
}

.filter,
.sort {
  padding: 15px;
}

select {
  font-size: larger;
}
.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: white;
  border: 1px solid black;
  width: 18%;
}
.product {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.product img {
  max-width: 70%;
}
.data {
  text-align: center;
}

.data h2 {
  font-size: 22px;
  text-decoration: solid;
  font-weight: 900;
  text-transform: capitalize;
  padding: 5px 0;
}

.data p {
  padding: 5px 0;
  font-size: 19px;
  color: rgb(5, 71, 5);
  font-weight: 900;
}

body {
  background: rgb(247, 200, 200);
  min-width: 100%;
}
/* mobile layout */

@media all and (max-width: 500px) {
  .mob-container {
    width: 49%;
  }

  .four-col {
    width: 24%;
  }

  /* .wrapper {
    width: auto;
    margin: 0 auto;
  } */
}
