
:root 
	{
		--logo-path: url('img/white.png');
		background-color: white;
		color: #221E1F;
	}
@media (prefers-color-scheme: dark)
	{	
		:root
			{
				--logo-path: url('img/black.png');
				background-color: #221E1F;
				color: white;
			}
	}


.logo
	{
		content: var(--logo-path);
		width: 80vw;
		max-width: 494px;
		height: auto;
		margin: 0 auto;
		display: block;
	}


@media print 
	{
		color-scheme: light;
		nav, .botao-imprimir, footer 
			{
				display: none;
			}
		.conteudo 
			{
				width: 210mm;
				height: 297mm;
				margin: 10;
				box-shadow: none;
				max-width: none;
			}

		@page 
			{
				size: A4;
				margin: 10mm;
			}
	}

section
	{
		width: 80vw;
		max-width: 794px;
		height: auto;
		margin: 0 auto;
		margin-bottom: 15px;
		display: block;
	}

.nome
	{
		text-align: center;
		font-size: 24px;
		font-weight: bold;
	}

.texto
	{
		text-align: justify;
		text-indent: 50px;
		font-size: 18px;
	}