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;
}

html {
    box-sizing: border-box;
}

body {
	background-color: #f8c647;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

main {
	display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4d04e;
    height: 100vh;
    padding: 0;
    margin: 0;
}

.container {
	max-width: 50vh;
	height: 70%;
	border: 1.3px solid black;
	border-radius: 25px;
	box-shadow: 10px 10px;
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: white;
	margin-bottom: 25px;
}

.container img {
	width: 100%;
	height: 250px;
	border-radius: 10px;
}

button {
	border: 1px solid #f8c647;
	border-radius: 5px;
	background-color: #f8c647;
	margin-top: 12px;
	padding: 5px 13px;
	font-size: normal;
	font-weight: bolder;
}

button:hover{
	background-color: aliceblue;
    color: #f8c647;
}

.two{
	font-size: small;
	font-weight: lighter;
	padding-top: 15px;
}

.three, .four {
	margin-top: 20px;
}
.three {
	font-size: 20px;
	font-weight: bolder;
}

.four {
	color: grey;
	line-height: 1.2;
}

.avatar  {
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.avatar img {
	width: 30px;
	height: 30px;
}

.five {
	padding: 10px;
	font-weight: bolder;
}

.attribution {
	font-size: 11px;
	text-align: center;
	margin: -25px 0 0 0;
	padding: 0 0 3px 0;
	}
	.attribution a {
	color: hsl(228, 45%, 44%);
	text-decoration: none;
}

@media (max-width: 600px) {
	main {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: #f4d04e;
		height: 100vh;
		padding: 0;
		margin: 0 20px;
	}
	
	.container {
		max-width: 50vh;
		height: 70%;
		border: 1.3px solid black;
		border-radius: 25px;
		box-shadow: 10px 10px;
		display: flex;
		flex-direction: column;
		padding: 20px;
		background-color: white;
		margin-bottom: 25px;
	}
	
	.container img {
		width: 100%;
		height: 250px;
		border-radius: 10px;
	}
	
	button {
		border: 1px solid #f8c647;
		border-radius: 5px;
		background-color: #f8c647;
		margin-top: 12px;
		padding: 5px 13px;
		font-size: normal;
		font-weight: bolder;
	}

	button:hover{
		background-color: aliceblue;
		color: #f8c647;
	}
	
	.two{
		font-size: small;
		font-weight: lighter;
		padding-top: 15px;
	}
	
	.three, .four {
		margin-top: 20px;
	}
	.three {
		font-size: 20px;
		font-weight: bolder;
	}
	
	.four {
		color: grey;
		line-height: 1.2;
	}
	
	.avatar  {
		display: flex;
		align-items: center;
		margin-top: 20px;
	}
	.avatar img {
		width: 30px;
		height: 30px;
	}
	
	.five {
		padding: 10px;
		font-weight: bolder;
	}
	
	.attribution {
		font-size: 11px;
		text-align: center;
		margin: -25px 0 0 0;
		padding: 0 0 3px 0;
		}
		.attribution a {
		color: hsl(228, 45%, 44%);
		text-decoration: none;
	}
}



	