body {
	height: 100vh;
	display: grid;
	place-items: center;
	font-family: 'Helvetica';
	font-weight: 300 !important;
	font-size: 14px; 
	color: #354347;
}
h1 {
	font-weight: 300 !important;
}
.wrapper {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
	padding: 30px;
	border-radius: 20px;
	margin: 0 10px;
}
@media(min-width: 640px){
	.wrapper {
		width: 75%;
	}
}
@media(min-width: 1200px){
	.wrapper {
		width: 40%;
	}
}

.text {
	margin-top: 70px;
	line-height: 1.4;
}
.text p {
	margin: 0;
}
h1 {
	margin-bottom: 50px;
	color: #354347;
}
hr {
	background-color: #00b5ad;
	margin: 0 auto;
	border: none;
	height: 1px;
}
a {
	text-decoration: none;
	color: #00b5ad;
}
.social a {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	padding: 16px;
	background: #00b5ad;
	box-sizing: border-box;
	margin-left: 7px;
	transition: all 0.3s ease;
}
.social a:hover {
	background: #354347;
}
.social a img {
	max-width: 100%;
}

.flex-btwn {
	display: flex;
	justify-content: space-between;
	margin-top: 1em;
	align-items: flex-end;
}

@media(max-width: 600px){
	.flex-btwn {
		flex-wrap: wrap;
	}
	.social {
		margin-top: 20px;
	}
	h1 {
		font-size: 20px;
	}
}
.logo {
	max-width: 650px;
}

