/* http://meyerweb.com/eric/tools/css/reset/
   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;
}

/* belks.css */

.image {
    background: url('bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;
}

.image-dim {
    background-color: rgba(255, 255, 255, 0.4);
    padding-top: 8em;
}

body {
    color: white;
    font-family: sans-serif;
    font-size: 1.4vw;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.4em;
    font-size: 6em;
}

main {
    background-color: rgba(66, 66, 66, 0.8);
}

main > div {
    padding: 4em 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 2em;
    line-height: 1.2em;
}

main > div > div {
    padding: 1em;
}

main > div > div > img {
	max-width: 6em;
	max-height: 6em;
}

main li {
    white-space: nowrap;
}

footer {
    font-size: 1.6em;
    padding: 0.6em;
    text-align: center;
    color: grey;
    background-color: rgba(0, 0, 0, 0.8);
}

a, a:visited, a:link, a:active, a:hover {
    color: #f39c12;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body { font-size: 0.5em; }
    main > div { padding: 2em; }
}

@media (min-width: 1000px) {
    body { font-size: 1em; }
    main > div { padding: 2em; }
}
