html,
body {
  height: 100%;
  background: #333 url('../images/bg.jpg');
  background-size: cover;
}

/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}
@keyframes reception {
  from {
    opacity: 0.8;
  }
  60% {
    opacity: 0.8;
  }
  to {
    opacity: 0;
  }
}
@keyframes reception-one {
  from {
    opacity: 0.6;
  }
  60% {
    opacity: 0.6;
  }
  to {
    opacity: 0;
  }
}
@keyframes reception-two {
  from {
    opacity: 0.9;
  }
  60% {
    opacity: 0.9;
  }
  to {
    opacity: 0.6;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes glitch-anim {
  0% {
    clip: rect(0, 0, 175px, 0);
  }
  50% {
	clip: rect(0, 0, 175px, 0);
  }
  100% {
    clip: rect(0, 220px, 175px, 0);
  }
}
@keyframes glitch-anim-alt {
  0% {
    clip: rect(45px, 220px, 175px, 0);
  }
  50% {
	clip: rect(45px, 220px, 175px, 0);
  }
  100% {
    clip: rect(150px, 220px, 175px, 0);
  }
}
.logo-holder {
	position: relative;
	display: block;
	width: 300px;
	height: 199px;
	background: url('../images/logo.png') 33px top no-repeat;
	background-size: 175px 175px;
	margin: 0 auto;
	margin-bottom: 50px;
}
.bg {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 280px;
	height: 179px;
	background: #171717;
}
.tv {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 200px;
	background: url('../images/retro-tv.png') left top no-repeat;
	background-size: 300px 200px;
	z-index: 500;
}
.fuzz {
	position: absolute;
	top: 0;
	left: 0;
	width: 220px;
	height: 175px;
	background: #171717 url('../images/fuzz.gif') 10px 10px no-repeat;
	background-size: 250px 165px;
	z-index: 450;
	opacity: 0.3;
}
.reception {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 220px;
	height: 175px;
	overflow: hidden;
	background: #171717 url('../images/logo.png') 23px -10px no-repeat;
	background-size: 175px 175px;
	margin: 0 auto;
	overflow: hidden;
	animation: reception 6s linear 0s infinite alternate,
	reception-two 6s linear 0s infinite alternate,
	reception 6s linear 0s infinite alternate;
	z-index: 499;
}
.logo {
	display: block;
	width: 220px;
	height: 175px;
	overflow: hidden;
	background: #171717 url('../images/logo.png') 23px 0 no-repeat;
	background-size: 175px 175px;
	margin: 10px 0 0 10px;
	opacity: 0;
	overflow: hidden;
	animation: show 1s linear 0s infinite alternate;
}
.logo::before {
	content: url(image.png);
	width: 220px;
	height: 175px;
	background: url('../images/glitch-1.png') 33px 0 no-repeat;
	background-size: 175px 175px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 110;
	animation: glitch-anim 0.4s linear 0s infinite alternate;
}
.logo::after {
	content: url(image.png);
	width: 220px;
	height: 175px;
	background: url('../images/glitch-2.png') 33px 0 no-repeat;
	background-size: 175px 175px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	animation: glitch-anim-alt 0.7s linear 0s infinite alternate-reverse;
}
.hvr-grow-shadow:hover {
	background: #000;
	color: #fff;
	border: 1px solid #000;
}
/*
 * Base structure
 */

body {
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
          box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.site-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
  padding: 30px;
}


/*
 * Header
 */
.masthead-brand {
  margin-top: 10px;
  margin-bottom: 10px;
}

.masthead-nav > li {
  display: inline-block;
}
.masthead-nav > li + li {
  margin-left: 20px;
}
.masthead-nav > li > a {
  padding-right: 0;
  padding-left: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff; /* IE8 proofing */
  color: rgba(255,255,255,.75);
  border-bottom: 2px solid transparent;
}
.masthead-nav > li > a:hover,
.masthead-nav > li > a:focus {
  background-color: transparent;
  border-bottom-color: #a9a9a9;
  border-bottom-color: rgba(255,255,255,.25);
}
.masthead-nav > .active > a,
.masthead-nav > .active > a:hover,
.masthead-nav > .active > a:focus {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 768px) {
  .masthead-brand {
    float: left;
  }
  .masthead-nav {
    float: right;
  }
}


/*
 * Cover
 */

.cover {
  padding: 0 20px;
}
.cover .btn-lg {
  padding: 10px 20px;
  font-weight: bold;
}


/*
 * Footer
 */

.mastfoot {
  color: #999; /* IE8 proofing */
  color: rgba(255,255,255,.5);
}


/*
 * Affix and center
 */

@media (min-width: 768px) {
  /* Pull out the header and footer */
  .masthead {
    position: fixed;
    top: 0;
  }
  .mastfoot {
    position: fixed;
    bottom: 0;
  }
  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }
  /* Handle the widths */
  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }
}

@media (min-width: 992px) {
  .masthead,
  .mastfoot,
  .cover-container {
    width: 700px;
  }
}

@media (max-width: 768px) {
	.logo-holder {
		margin-top: 55px;
	}
}