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;
}
strong {
    font-weight: 700;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

#header {
    background-color: #000;
    display: flex;
    padding: 12px 12px 10px;
    width: 100%;
}

#logo {
    height: 50px;
}

#content {
    /*align-items: center;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 0 16px 64px;
    width: 40%;
}

#content > p {
    font-size: 20px;
    font-weight: 300;
    margin-top: 24px;
    text-align: left;
}

ul {
    list-style-type: none;
    width: 100%;
}

li.place {
    align-items: center;
    background-color: #1e1e1c;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    margin: 24px 0px;
}

li.place a {
    color: #fff;
    display: block;
    height: 100%;
    padding: 24px;
    width: 100%;
    text-decoration: none;
}

li.place a h2 {
    font-size: 40px;
}

li.place a p {
    align-items: center;
    display: flex;
    font-size: 20px;
    margin-top: 12px;
}

li.delivery a {
    background-color: #1e1e1c;
    border-radius: 16px;
    color: #fff;
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

li.delivery {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 24px 0px;
}

li.delivery a img {
    margin-bottom: 12px;
    margin-top: 12px;
}

li.delivery a h2 {
    font-size: 28px;
    padding: 0 24px 24px;
}

#footer {
    background-color: #328763;
    bottom: 0;
    padding: 12px;
    position: fixed;
    text-align: center;
    width: 100%;
}

#footer a {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
}

#footer a strong {
    display: block;
}
#footer a span {
    font-size: 16px;
}

@media only screen and (max-width: 1000px) {
    #content {
        width: 100%;
    }
}
