@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;500;700&display=swap');

html {
	border-top-style: solid;
	border-width: 10px;
	border-color: #d12148;
}

body {
	background-color: #f3f3f3;
	color: #d12148;
	font-family: 'Rubik', sans-serif;
	margin: 0;
}

h1,
h2,
h3 {
	text-align: center;
}

h1 {
	color: #d12148;
	font-weight: 700;
	font-size: 66px;
	margin-bottom: 0;
}

h2 {
	color: #696868;
	font-weight: 500;
	font-size: 24px;
}

h3 {
	color: #d12148;
	font-weight: 500;
	font-size: 24px;
}

img {
	display: block;
	margin: 0 auto;
	padding-top: 50px;
	width: 75%;
}

footer {
	background-color: #d12148;
	color: #FFF;
	text-align: center;
	font-weight: 300;
	font-size: 12px;
	padding: 20px;
	margin-top: 15%;
}

.many-columns {
	/* use a div, then inside the div, use other div -> grid display will divide equally */
	display: grid;
	margin: 0 auto;
	width: 75%;
}

@media only screen and (max-width: 425px) {
	header {
		margin: 0 10% 0 10%;
	}

	h1 {
		font-size: 33px;
	}

	h2,
	h3 {
		font-size: 12px;
	}

	img {
		padding-top: 25px;
	}

	.many-columns {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media only screen and (min-width: 426px) {
	.many-columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (min-width: 769px) {
	.many-columns {
		grid-template-columns: repeat(3, 1fr);
	}
}