/* Comentario */

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

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

/* tipografia */


.titulo-A{
	font-size: 80px ;
	font-family: 'Times New Roman', Times, serif;
	margin-bottom: 50px ;
}

.titulo-B{
	font-size: 50px ;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	margin-bottom: 30px ;
}

.texto{
	font-size: 16px;
	line-height: 24px;
	color: black;
	margin-bottom: 10px;
}


/* Cores */

.cor-A{
	color: #edb5e1;
}

.cor-B{
	color: rgb(78, 78, 155);
}

.cor-fundo-A{
	background-color: #815188;
}

.cor-fundo-B{
	background-color: #b375a7;
}

.cor-fundo-C{
	background-color: #73b6b6;
}


/* estrutura */

header{
	
}

section{
	
}

footer{
	
}

.container{
	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;
	margin-bottom: 10px;
}

.item-6-col{
	grid-column: span 6;
	margin-bottom: 10px;
}

.item-4-col{
	grid-column: span 4;
	margin-bottom: 10px;
}

.item-3-col{
	grid-column: span 3;
	margin-bottom: 10px;
}


/* margins e padding */


.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-bottom: 30px;
	padding-bottom: 30px;
}




























































































































































































