@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.container {
	background-image: url('images/bg-desktop.svg');
	background-color: hsl(257, 40%, 49%);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 100vh;
	font-family: 'Open Sans', sans-serif;
	
}
.flex > div:first-child {
	flex: .6;
}

.flex > div:last-child {
	flex: .4;
}


.img img {
	width: 100%;
}


nav img{
	width: 200px;
	margin: 30px;
}

.flex {
	display: flex;
	padding: 50px;
}

.text-content {
	
	padding: 30px 60px 0;
	color: #fff;
}
.text-content h1 {
	padding: 30px 0;
}
.text-content button {
	margin-top: 50px;
	width: 150px;
	background-color: #fff;
	color: hsl(257, 40%, 49%);
	padding: 10px;
	border-radius: 50px;
	border: none;
	font-weight: 700;
	font-family: 'Open Sans', sans-serif;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	cursor: pointer;
}

.social ul {
	display: flex;
	list-style: none;
	justify-content: flex-end;
	padding: 0;
	margin: 40px;
	margin-bottom: 0;
	padding-bottom: 20px;
	margin-top: 0;
}

.social ul li a {
	
	border: 2px solid #fff;
	border-radius: 50%;
	display: inline-flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
	margin-left: 10px;
}


@media (max-width: 700px) {
	.container {
		background-position: center center;
	}
	.text-content {
		text-align: center;
		padding: 20px;
	}

	.flex {
		flex-direction: column;
	}
	.social ul {
		justify-content: center;
	}
	
}


