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;
}

/* RESETS ABOVE */

html {
    background-color: #eeeeee;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

nav li {
    float: left;
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover {
    background-color: #111;
}

nav .active {
    background-color: #111;
}

.logo {
    width: 20vh;
    display: flex;
    margin: 20px auto 0 auto;
}

.brand {
    font-size: 5vh;
    color: #333;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-align: center;
    margin: 10px auto 0 auto;
}

.mission {
    width: 70vw;
    margin: 40px auto 20px auto;
    font-size: 2.5vh;
    color: #333;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70vw;
    margin: 0 auto;
}

@media screen and (max-width: 728px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 1028px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #ffffff;
    border-radius: 20px;
    color: #999;
    margin: 10px 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.product-img {
    margin-top: 10px;
    height: 250px;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.product-name {
    margin-top: 10px;
    font-size: 24px;
    color: #333;
}

.product-type {
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.level {
    margin-top: 10px;
}

.product-abv {
    width: 40%;
    float: left;
    text-align: right;
    color: rgb(177, 117, 5);
}

.product-price {
    width: 40%;
    float: right;
    text-align: left;
    color: rgb(141, 74, 74);
}

.product-description {
    margin-top: 10px;
    font-size: 20px;
    padding: 0 10px;
    height: 100px;
    color: #777;
}
