/* 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 of CSS Reset */

body {
    background-image: url(images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Gabarito', sans-serif;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1280px;
    margin: 25px auto;
    background-color: rgba(26, 37, 59, 0.65);
    border-radius: 15px;
    color: rgb(242, 255, 255);
    padding: 15px;
}

h1 {
    grid-column: 1/5;
    text-align: center;
    margin-bottom: 15px;
    height: 125px;
    background-image: url(images/hero.jpg);
    background-size: cover;
    border-radius: 15px;
    padding-top: 75px;
    font-size: 50px;
    text-shadow: 0px 0px 25px rgba(16,18,55,1);
    box-shadow: 0px 0px 16px 5px rgba(16,18,55,0.75);
    margin: 25px 0;
    font-family: 'Dosis', sans-serif;
}

p {
    border: 5px solid rgb(107, 126, 163);
    font-size: 17px;
    line-height: 25px;
    padding: 15px;
    margin: 0px 15px;
    border-radius: 10px;
    text-shadow: 0px 0px 17px rgba(16,18,55,0.75);
    transition: 0.5s;
}

p:hover {
    border: 5px solid rgb(70, 91, 133);
    background-color: rgb(70, 91, 133);
    box-shadow: 0px 0px 16px 5px rgba(16,18,55,0.75);
}

footer {
    grid-column: 1/5;
    text-align: center;
    font-style: italic;
    margin-top: 15px;
}