/* Add CSS styling here */
/* 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;
}
/* My reset */

*{
    box-sizing: border-box;
    padding: 0;
    max-width: 100%;
}

/* General Styles */

html{
    font-size:62.5%;
}
body{
    font-size:1.6rem;
    background-color:#9ce4fc;
    line-height:1.5;
    color:#4f4f4f;
    font-family: 'Raleway', sans-serif;
    width: 100%;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 10% 0;

}

h1 {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    color: hotpink;
}
h2 {
    font-size: 4rem;
}
h3 {
    font-size: 2.5rem;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    border:hotpink 3px solid;
    width: 806px;
    height: 606px;
    margin: 3% auto;
}

@media (max-width:500px) {
    .grid{
        border: none;
    }
}
