body {
	background-color: #000;
	background-image: radial-gradient(
		rgba(0, 174, 239, 0.35), black 120%
	);
	background-repeat: repeat;
	background-attachment: fixed;
	
	color: #00aeef;
	font-family: "VT323", monospace;
	font-size: 24px;
	text-shadow: 0 0 4px #00aeef;

}

a {
	color: #f0f0f0;
}

#logo {
  filter: drop-shadow(0 0 5px #00aeef);
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#countdown {
	color: #f0f0f0;
	border: 5px solid #00aeef;
	text-align: center;
}

.container {
	margin: 25px 50px;
}

.footerleft {
  text-align: left;
  position: fixed;
  left: 0px;
  bottom: 0px;
}

.footerright {
	float: right;
}

.button {
  background-color: #00aeef;
  border: 5px solid #00aeef;
  box-shadow: 0 0 5px #00aeef;
  color: #002533;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 3px #002533;
  display: inline-block;
}

.button:hover {
	background-color: #002533;
	color: #00aeef;
	border: 5px dashed #00aeef;
	text-shadow: 0 0 3px #00aeef;
}

.button2 {
  background-color: #f0f0f0;
  border: 5px solid #00aeef;
  box-shadow: 0 0 5px #00aeef;
  color: #002533;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 3px #002533;
  display: inline-block;
}

.button2:hover {
    background-color: #002533;
	color: #f0f0f0;
	border: 5px dashed #00aeef;
	text-shadow: 0 0 3px #f0f0f0;
}

.collapsible {
  background-color: #00aeef;
  box-shadow: 0 0 5px #00aeef;
  color: #002533;
  cursor: pointer;
  padding: 5px 5px;
  border: 5px solid #00aeef;
  text-align: left;
  text-decoration: none;
  text-shadow: 0 0 3px #002533;

}

.collapsible:hover {
	background-color: #002533;
	color: #00aeef;
	border: 5px dashed #00aeef;
	text-shadow: 0 0 3px #00aeef;
}

.content {
  padding: 0 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border: 3px dotted #00aeef;
  /*background-color: #f1f1f1;*/
}

@keyframes flicker {
  0% {
    opacity: 0.77861;
  }
  5% {
    opacity: 0.94769;
  }
  10% {
    opacity: 0.73604;
  }
  15% {
    opacity: 0.99626;
  }
  20% {
    opacity: 0.68128;
  }
  25% {
    opacity: 0.99891;
  }
  30% {
    opacity: 0.95583;
  }
  35% {
    opacity: 0.97807;
  }
  40% {
    opacity: 0.76559;
  }
  45% {
    opacity: 0.99693;
  }
  50% {
    opacity: 0.99019;
  }
  55% {
    opacity: 0.58594;
  }
  60% {
    opacity: 0.70313;
  }
  65% {
    opacity: 0.99988;
  }
  70% {
    opacity: 0.99455;
  }
  75% {
    opacity: 0.87288;
  }
  80% {
    opacity: 0.99428;
  }
  85% {
    opacity: 0.99419;
  }
  90% {
    opacity: 0.99003;
  }
  95% {
    opacity: 0.86108;
  }
  100% {
    opacity: 0.74387;
  }
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.5s infinite;
}
.crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;

  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.crt {
	margin: 25px 50px;
}


