*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

body {
	background: #603e51;
	color: #ffffff;
	font-family: 'Droid Serif', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

header {
	padding: 6rem 2rem;
}

h1, h2 {
	text-align: center;
}

h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3rem;
}

h2 {
	font-family: 'Droid Serif', sans-serif;
	font-size: 2.5rem;
}

p {
	font-size: 1.3rem;
	line-height: 1.7;
	margin-bottom: 3rem;
}


.wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.counter {
	display: flex;
	flex-direction: row;
	justify-content: center;
	color: #603e51;

}

.counter__element {
	background: mistyrose;
	// flex: 1;
	flex-basis: 25%;
	padding: 2rem;
	text-align: center;
	margin: 1rem;
}

.counter__icon {
	max-width: 4rem;
	display: block;
	margin: 0 auto;
	fill: #603e51;
}

.counter__number {
	font-family: 'Oswald', sans-serif;
	font-size: 4rem; 
	margin: 1rem 0;
}

.counter__description {
	font-family: 'Droid Serif', sans-serif;
	font-size: 1.5rem;
	margin: 0;
}