@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&family=Tinos&display=swap');

body {
	font-family: Tinos;
	font-size: 16px;
	line-height: 1.5;
	background-color: #F9FAFB;
	/* all the screen */
	color: #1C2023;
	margin: 9px auto 12px auto;
	width: 1440px;
	/* the visual width of the page*/
}

header {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}

/*a selector: overwrite the atributes
the size of Dominga Generative in Tinos typography*/
h1 {
	font-family: Tinos;
	font-size: 18px;
  font-weight: bold;
}

h2 {
	font-family: Tinos;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0 0 1px 0;
}

p {
	font-size: 12px;
  font-weight: 400;
	color: #1C2023;
	line-height: 1;
	margin: 12px 0 12px 360px;
}

section {
	margin: 172px 0 auto 0;
	display: grid;
	/* prototype real*/
	grid-template-columns: repeat(16, 1fr);
	/* each column*/
	gap: 20px 20px;
}

section.profile h1 {
	grid-column: 5 / span 9;
}

section.profile img {
	grid-column: 5 / span 9;
}
section.profile h2 {
	grid-column: 5 / span 9;
	text-align: center;
}
