html,
body {
	background-color: #1973bd;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	background: #1973bd url(../img/globus.gif) no-repeat center center;
	overflow: hidden;
}

* {
	outline: none;
	box-sizing: border-box;
}

.circle_box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 440px;
	height: 440px;
	margin-top: -220px;
	margin-left: -220px;
	background-color: #fff;
	border-radius: 50%;
	border: 10px solid #1973bd;
	color: #1973bd;
	text-align: center;
	font-size: 30px;
	line-height: 40px;
	font-weight: 300;
}

.circle_box  a {
	color: inherit;
	text-decoration: none;
}

.circle_box h1 {
	margin: 0;
	margin-top: 140px;
	font-size: 40px;
	line-height: 46px;
	font-weight: 500;
	margin-bottom: 22px;
	text-transform: uppercase;
}



@media (max-width: 440px) {
	
	body {
		background-image: none;
	}

	.circle_box {
		position: static;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		margin-left: 0;
		margin-top: 0;
		background: none;
		border: none;
		color: #fff;
		padding: 40px;
	}

	.circle_box h1 {
		margin-top: 0;
		font-size: 48px;
		line-height: 53px;
	}

}