/* cool font */
@font-face {
	font-family: connection-iii;
	src: url('../font/connection-iii-font/ConnectionIii-Rj3W.otf');
}

/* html covers everything */
html {
	height: 100%;
	width: 100%;
}

/* background image*/
body {
	background-image: url("../img/nightEx.png");
	background-color: #000;
	background-position: bottom;
	background-size: cover;
	background-repeat: repeat-x;
}

/*default text*/
p, h1, h2, h3, h4, h5, h6 {
	color: #fff;
	font-size: 200%;
}

/* center it */
h1 {
	text-align: center;
}

/*emergency brodcast window*/
div#emergencyBrodcastDiv {
	background-color: rgba(0, 0, 0, 0.7);
	/* margin: auto; */
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 50%;
	padding: 5%;
	-ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*hides things*/
.invis {
	display: none;
}

/* applies cool gamer font*/
.coolFont {
	font-family: connection-iii;
	word-spacing: 6px;
}

/*red*/
.red-text {
	color: #f00;
}