/* 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;
}

/* End reset CSS */

body {
    font-family: "Lato", sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 0;
    color: #dadce0;
}

@media (max-width: 500px) {
    #app {
        zoom: 200%;
    }
}

#home {
    padding: 20% 4.5%;
    padding-top: 10%;
}

h1 {
    font-size: 24px;
    margin: 0;
    text-align: center;
    width: 100%;
    font-weight: bold;
    margin-bottom: 20px;
}

a.list-button {
    text-decoration: none;
    display: block;
    background-color: rgb(57, 57, 57);
    padding: 12px;
    margin: 12px 5%;
    border-radius: 40px;
    text-align: center;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

#banner-image {
    width: 100%;
    height: 200px;
    max-height: 33vh;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

#article-wrapper {
    padding: 0px 10px 40% 10px;
    max-width: 700px;
    margin: 0 auto;
}

#article-wrapper p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 9px;
    hyphens: auto;
}

#article-wrapper a {
    color: #dadce0; 
}

.list-button:hover {
    background-color: rgb(80, 80, 80);
}
