* {
	box-sizing: border-box;
	font-family: Comic Sans MS, sans-serif;
}

h1 {
	text-align: center;
	font-size: 175%;
	margin-bottom: 50px;
} 

.row {
	width: 100%;
}

section {
	background-color: #959595;
	border: black solid 1px;
	padding: 20px 10px 10px 10px;
	margin: 10px;
	position: relative;
}

section div {
	font-size: 125%;
	text-align: center;
	width: 150px;
	border: black solid 1px;
} 
#f1 {
	background-color: #e0a0ba /* pink */;
	position: absolute;
	top: 0px;
	right: 0px;
}
#f2 {
	background-color: #e1725d /* red */;
	color: white;
	position: absolute;
	top: 0px;
	right: 0px;
}
#f3 {
	background-color: #f6ed9a /* light yellow */;
	position: absolute;
	top: 0px;
	right: 0px;
}

@media (min-width: 992px) {
	#row1 {
		width: 33.33%;
		float: left;
	}
	#row2 {
		width: 33.33%;
		float: left;
	}
	#row3 {
		width: 33.33%;
		float: left;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#row1 {
		width: 50%;
		float: left;
	}
	#row2 {
		width: 50%;
		float: left;
	} 
	#row3 {
		float: left;
	}
}

