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

html,
body {
    height: 100%;
}

html {
    background: url(bg.jpeg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

#header {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    padding: 4px 12px;
    width: 100%;
}

#logo {
    height: 90px;
}

#header h1 {
    font-size: 36px;
    line-height: 48px;
    margin: 0 auto;
    text-align: center;
}

#logo {
    height: 110px;
}

#content {
    align-items: center;
    display: flex;
    flex: 1;
    /* height: calc(100% - 170px); */
    justify-content: center;
    margin: 0 auto;
    /* min-height: 100%; */
    padding: 16px 16px 64px;
    width: 40%;
}

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

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

li a {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px dotted #fff;
    border-radius: 16px;
    color: #000;
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

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

li a h2 {
    font-size: 28px;
    padding: 24px;
    line-height: 32px;
}

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

#footer a {
    color: #328763;
    font-size: 12px;
    font-weight: 300;
}

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

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