* {
	padding: 0;
	margin: 0;
	font-family: "Roboto";
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 1.5rem;
}

h3 {
	font-size: 1.17rem;
}

body {
	height: 100vh;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bg-color {
	background-color: rgba(255, 255, 255, 1);
}

.grid-container {
	display: grid;
	grid-template-rows: 1fr 1fr;
	grid-template-columns: 1fr;
}

.grid-container-title {
	grid-row: 1 / 2;
	align-self: end;
	justify-self: center;
	text-align: center;
	word-wrap: break-word;
}

.title-padding-bottom {
	padding-bottom: 1.5rem;
}

.grid-container-subtitle {
	grid-row: 2 / 3;
	align-self: start;
	justify-self: center;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}

.text-center {
	text-align: center;
}
