body {
	background-color: #fff;
}
a:link {
	color: white;
	text-decoration: none;
}

a:hover {
	color: red;
}

 .grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 20px;
	padding: 10px;
 }

.grid-item1 {
	grid-column-start: 1;
	grid-column-end: 1;
}

.grid-item2 {
	grid-column-start: 2;
	grid-column-end: 2;
}
.grid-item3 {
	grid-column-start: 3;
	grid-column-end: 3;
}

.roboto-bold {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #333;
	margin-top: 5px;
}

.lato {
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: black;
	font-size: 50px;
	color: #333;
}
.roboto-condensed-1 {
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-size: 50px;
	color: white;
	font-style: normal;
}
.cinzel {
	font-family: "Cinzel", sans-serif;
	font-weight: 500;
	font-size: 50px;
	font-style: normal;
	color: white;
}
