body {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
	color: #1D1D1D;
	background: #FFF;
	padding: 25px 20px 0 20px;
}

a, a:link, a:focus, a:active, a:visited, a:focus-within {
	color: #E66C5C;
	transition: all 0.3s ease;
}

a:hover {
	color: #E66C5C;
	opacity: 0.7;
	transition: all 0.3s ease;
}

p {
	font-weight: 200;
}

.container {
	max-width: 1200px;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

.avatar {
	vertical-align: middle;
  	width: 90px;
  	height: 90px;
  	border-radius: 50%;
}

.icons-container {
	display: flex;
	font-size: 1.5rem;
	color: #E66C5C;
	float: right;
	margin-bottom: 30px;
}

.icons-container a:not(:last-child) {
	margin-right: 12px;
}

.title {
	margin-top: 40px;
}

.title h1 {
	font-weight: 300;
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.subtitle h2 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.subtitle h2 .role {
	font-weight: 600;
	color: #E66C5C;
}

.description {
	margin-top: 10px;
}

@media (max-width: 575px) {
	p {
		font-size: 1rem;
		line-height: 32px;
		font-weight: 200;
	}
}

@media (min-width: 576px) {
	@supports (display: grid) {
	  	body, html {
			min-height: 100vh;
	  		display: grid;
		}

		.content {
			margin: auto;
		}
	}

	body {
		padding: 25px;
	}

	p {
		line-height: 36px;
	}

	.avatar {
		width: 110px;
  		height: 110px;
	}

	.icons-container {
		font-size: 1.7rem;
		margin-bottom: 0;
	}

	.icons-container a:not(:last-child) {
		margin-right: 15px;
	}

	.title {
		margin-top: 50px;
	}

	.title h1 {
		font-size: 2.3rem;
	}

	.subtitle h2 {
		font-size: 2.3rem;
	}

	.description {
		margin-top: 20px;
	}
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
	.title h1 {
		font-size: 2.8rem;
	}

	.subtitle h2 {
		font-size: 2.8rem;
	}

	.description {
		margin-top: 40px;
	}
}
