@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital@1&family=Roboto:wght@700&display=swap');

* {
	box-sizing: border-box;
}
body {
	display: flex;
	flex-flow: row wrap;
	justify-content: left;
	
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
header {
	width: 250px;
	padding: 25px;
	font-family: 'Roboto';
	font-weight: 700;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 36px;
	background-color: #eeeeee;
}

article {
	width: 250px;
	padding: 25px;
}
article img {
	max-width: 100%;
}

h1 {
	font-family: 'Roboto';
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 18px;
}
h2 {
	font-family: 'Merriweather';
	font-weight: 400;
	font-style: italic;
	font-size: 12px;
	line-height: 18px;
}