@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 300;
	src: local(''),
	url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 400;
	src: local(''),
	url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 500;
	src: local(''),
	url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 600;
	src: local(''),
	url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 700;
	src: local(''),
	url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('//static.emmi.fi/font/quicksand-v30-latin/quicksand-v30-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;           
}

body {
	background: #364c8c;
	color: #f5f5f5;
	font-family: "Quicksand", Arial;
}

.container {
	display: flex;
	min-height: 100vh;
}

.left-section {
	flex: 1;
	background-image: url("background.jpg");           
	background-size: cover;
	background-position: center;
}

.right-section {
	flex: 1;    
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.right-section-container {    
	margin-left: 80px;
	margin-right: 20px;
}

.logo {
	margin-top: 15px;   
	margin-bottom: 40px;			
}

.logo img {
	width: 200px;
}

.title {
	font-size: 50px;			
	margin-bottom: 15px;
	font-weight: 600;
}

.date {
	font-size: 30px;
	margin-bottom: 50px;
}

.text {
	font-size: 20px;
	line-height: 1.3;
	max-width: 600px;
	margin-bottom: 40px;
}

.btn {
	display: inline-block;
	background: #f5f5f5;
	color: #565656;
	padding: 14px 26px;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.25s;
	width: 180px;
	margin-bottom: 20px;
	text-align: center;
}

.btn:hover {
	background: #dfe6ff;
}

@media (max-width: 900px) {
	.container {
		flex-direction: column;
	}

	.left-section {
	   min-height: 20vh;
	}

	.right-section {
		text-align: center;
		align-items: center;
	}
	
	.right-section-container {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	.logo img {
		width: 150px;
	}

	.title {
		font-size: 40px;
		margin-bottom: 15px;
	}
	
	.logo {
		margin-top: 15px;   
		margin-bottom: 30px;			
	}   		   

	.date {				
		margin-bottom: 30px;
	}

	.text {				
		margin-bottom: 20px;
	}
	
	.btn {          
		margin-top: 20px;
	}			
}