/* Estilização Geral */
body {
	background-color: #0a0a0a; /* Preto profundo */
	color: #d1d1d1;  /*Cinza claro para leitura */
	font-family: 'Georgia', serif;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	text-align: center;
	background-image: url('../images/anjo.jpg'); 
	background-size: cover;       
	background-position: top-center; /* centraliza */
	background-repeat: no-repeat;
}

.container {
	max-width: 800px;
	padding: 20px;
	color: #d1d1d1;
	margin: 0;
}

.content {
	color: #d1d1d1;
}

.extraClass {
	color: #444444;
}

/* Estilização da Imagem */
.imagem-destaque {
	max-width: 100%;
	height: auto;
	border: 1px solid #333;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
	margin-bottom: 30px;
	filter: grayscale(30%); /* Mantém o tom melancólico */
}

/* Tipografia */
h1 {
	font-size: 2.5rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	border-bottom: 1px solid #444;
	display: inline-block;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

p {
	font-size: 1.2rem;
	line-height: 1.6;
	font-style: italic;	
	color: #FFFFFF;
}


.footer {
	margin-top: 50px;
	font-size: 1.2rem;
	color: #FFFFFF;
}