/* Comentario */

/* 
nome de uma tag{...}
#nome de uma tag com id{...}
.nome de uma tag com uma classe{...}
 */

*{
	margin:0px;
	padding:0px;
	
	}

/* tipografia */

h1{
	font-size: 30px;
	color: rgb(251, 251, 251);
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-bottom: 20px;

}

h2{
	font-size: 20px;
	color: rgb(252, 251, 251);
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-bottom: 20px;

}



.titulo-a{
	font-size: 40px;
	color: rgb(255, 255, 255);
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-bottom: 50px;
	
}

.titulo-b{
	font-size: 20px;
	color:rgb(255, 255, 255);
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-bottom: 30px;
	
}

.texto{ 
	font-size: 16px;
	line-height: 24px;
	color: rgb(255, 255, 255);
	margin-bottom: 10px;
}



/*cores */

.cor-a{
	color: blue;

}

.cor-b{
	color: red;
}

.cor-fundo-a{
	background-color:#250902;
}

.cor-fundo-b{
	background-color:#38040E;
}

.cor-fundo-c{
	background-color: #640D14;
}




/*estrutura */

header{
	height:50px;
}

section{
	
}

footer{
	height:50px;
	
}

.container{
	color: white;
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	
}


.grelha-12-col{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}


.item-12-col{
	grid-column: span 12;
	background-color:#640D14;
	margin-bottom: 10px;

}


.item-6-col{
	grid-column: span 6;
	
	background-color:#38040E ;
	margin-bottom: 10px;

}


.item-4-col{
	grid-column: span 4;
	background-color:#38040E;
	margin-bottom: 10px;

}
	


.item-3-col{
	grid-column: span 3;
	background-color:#640D14;
	margin-bottom: 10px;

}


/* margins e paddings */


.pad-t-b-grande{

	padding-top: 80px;
	padding-bottom: 80px;
}


.pad-t-b-medio{

	padding-top: 50px;
	padding-bottom: 50px;
}


.pad-t-b-pequeno{

	padding-top:30px;
	padding-bottom:30px;
}