*{
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}
body{
	background: hsl(212, 45%, 89%);
	height: 100vh;
	display:grid;
}
main{
	margin: auto;
	width: 300px;
	height: 450px;
	background: hsl(0, 0%, 100%);
	border-radius: 15px;
}
section{
	align-items: center;
	display:flex;
  	flex-direction: column;
  	justify-content: center;
}
section img{
	width: 90%;
	margin-top: 15px;
	border-radius: 15px;
}
section.texto{
	text-align: center;
	margin: 20px;
	font-size: 13px;
}
section h1{
	margin: 10px;
}
section p{
	margin: 10px 10px 15px 10px;
}
