/*CSS DOCUMENT*/

html,
body,
div,
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;
}
/*My edited version of the Eric Meyer’s reset tool. You may want to include this in all of your future CSS files. */

body {
    font-family: sans-serif;
}

div.home-container {
    background: url(home-background.jpg) center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
}

div.container {
    position: relative;
    min-height: 100vh;
}

main {
    padding: 1.5em 1.5em 1.5em;
}

img {
    width: 100%; /*Please leave this line.*/
    display: block;
    padding-bottom: 1em;
}

header {
    display: grid;
    grid-template-columns: 65% auto;
    background: #cbcbcb;
    padding: 1em 0.5em;
}

h1 {
    width: 15em;
}

h2,
h3,
h4 {
    font-weight: bold;
}

h2 {
    font-size: 2em;
    margin: 0.5em 0.5em 0.5em;
}

h3 {
    font-size: 1.5em;
    margin: 0.5em 0.5em 0.5em;
}

a {
    text-decoration: none;
}

nav ul {
    text-align: right;
}

ul li {
    list-style-type: none;
}

figure {
    margin-bottom: 1em;
}

main.menu ul {
    margin: 1em 0.5em;
}

main.menu ul li {
    margin: 1em 1em 1em;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
}

p {
    margin: 0.5em 0.5em 0.5em;
}

p.description {
    grid-column: 1/2;
    margin: 0.5em 0.5em 0.5em;
    margin-left: 0em;
}

p.price {
    grid-row: 1/2;
    grid-column: 2/3;
    color: rgb(244, 32, 32);
    text-align: right;
    margin: 0em;
}

nav ul li {
    text-transform: uppercase;
    font-weight: bold;
    margin: 1.5em 1em 0.5em;
}

nav ul li a {
    color: #fffd12;
    background-color: #0021ff;
    padding: 0.5em 0.5em 0.5em;
}

p.slogan {
    font-size: 5em;
    font-family: serif;
    font-style: italic;
    margin: 1em 0.5em 1.5em;
    color: #ffffff;
}

footer {
    position: absolute;
    bottom: 1;
    width: 100%;
    height: 3rem;
    box-sizing: border-box;
    padding: 1em 1em;
    background: #fffd12;
}

p.address {
    color: #ff8603;
}

footer p {
    margin: 0em 0em;
}
