* {
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
    overflow: hidden
}

body {
	width: 1000px;
    margin: 0 auto;
	background-color: #0B0D0F;
	color: #eee;
	font-family: 'Open Sans', sans-serif;

    -webkit-font-smoothing: antialiased;
}

#shortTitle {
	display: none;
}

#longTitle {
	display: initial;
}

#logo {
	height: 256px;
	width: 256px;
	margin-top: 50px;
    margin-bottom: 50px;
	background-size: 256px 256px;
	background-image: url("logo.png");
	background-repeat: no-repeat;
}

#packageInfo {
    font-size: 1.2em;
}

header {
    margin: auto;
	margin-top: 2em;
    width: 100%;
    font-weight: 100;
	font-size: 5em;
	text-align: center;
}

div {
	margin: 0 auto;
	padding: 0;
}

body p {
	padding-top: 5px;
	margin: 0 auto !important;
	width: 860px;
	color: #a9a9a9;
	font-size: 1.3em;
	line-height: 27px;
	text-align: center;
}

a {
	color: #00c2ff;
	padding: 0px 1px 0px 1px;
	text-decoration: none;
}

div.cursor {
    width: 55px;
    height: 4px;
	display: inline-block;
	background: #111;
	margin-left: -8px;
    margin-bottom: -14px;

	-webkit-animation: blink 1070ms linear 0s infinite;
	-moz-animation: blink 1070ms linear 0s infinite;
	-ms-animation: blink 1070ms linear 0s infinite;
	-o-animation: blink 1070ms linear 0s infinite;
}

@-webkit-keyframes blink {
  0%   { background: #00c2ff }
  47%  { background: #00aee4 }
  50%  { background: #0B0D0F }
  97%  { background: #0B0D0F }
  100% { background: #00c2ff }
}

@-moz-keyframes blink {
  0%   { background: #00c2ff }
  47%  { background: #00aee4 }
  50%  { background: #0B0D0F }
  97%  { background: #0B0D0F }
  100% { background: #00c2ff }
}

@-ms-keyframes blink {
  0%   { background: #00c2ff}
  47%  { background: #00aee4 }
  50%  { background: #0B0D0F }
  97%  { background: #0B0D0F }
  100% { background: #00c2ff }
}

@-o-keyframes blink {
  0%   { background: #00c2ff }
  47%  { background: #00aee4 }
  50%  { background: #0B0D0F }
  97%  { background: #0B0D0F }
  100% { background: #00c2ff }
}

@media screen and (max-width: 960px) {
	body {
		width: 100% !important;
	}
	
	body p {
		width: 405px !important;
		font-size: 1.2em !important;
	}

    #packageInfo {
        font-size: 1.1em !important;
    }

	#shortTitle {
		display: initial !important;
	}

	#longTitle {
		display: none !important;
	}

	#logo {
		background-size: 128px 128px !important;
		height: 128px !important;
		width: 128px !important;
	}
}

@media screen and (max-width: 440px) {
	body p {
		width: initial !important;
		padding: 10px !important;
	}

	header {
		font-size: 4em !important;
	}

	.cursor {
		width: 45px !important;
		height: 3px !important;
	}
}
