	body {
		background: #ddd;
		font-family: sans-serif;
		text-align: center;		
	}
	a {
		color: #33b4a8;
		text-decoration: none;
	}
	h2 {
		font-weight: 600;
		margin: 20px 0px;
	}
	p {
		margin: 0px 0px 10px;
	}
	img {
		height: auto;
		max-width: 100%;
	}
	.container {
		height: 100%;
		/*IMPORTANTE*/
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.content {
		padding: 20px;
		background: #fff;		
		font-size: 20px;
		color: #666;
		width: 420px;
	}
	
	@media all and (max-width: 480px) {
		.content {
			margin: 0px;
			width: 100%;
			height: auto;
		}
	}	