/*
 Theme Name:   Twenty Twelve Child
 Description:  Child theme for Twenty Twelve
 Author:       Your Name
 Template:     twentytwelve
 Version:      1.0.0
*/
 
/* Add custom CSS below this line */

/* Override parent's .site max-width (match the parent's media query if needed) */
@media screen and (min-width: 600px) {
	.site {
		/* set both px and rem to match the parent's pattern */
		max-width: 960px;
		max-width: 80.571428571rem;
	}
}

@media screen and (min-width: 960px) {
    body {
		background-color: #ffffff;
	}
	body .site {
		/* replace these two lines with whatever value you want */
		margin-top: 0px;
		margin-top: 0rem;
        box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
	}
}