@import url("https://fonts.googleapis.com/css2?family=Sriracha&display=swap");
body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  overflow: hidden;
  animation: fadeInAnimation ease 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-color: black;
  -webkit-animation: fadeInAnimation ease 5s;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#container {
	position: absolute;
	width: 100vmax;
	height: 100vmax;
	left: 50%;
	top: 50%;
	background: linear-gradient(to bottom, #4873ac, #2467f7);
	transform: translate3d(-50%, -40%, 0);
}
.themainthing {
  margin: 0;
  position: absolute;
  width: 50vmax;
  height: 30vmax;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.col {
	top: 45%;
	color: #dddddd;
  text-align: center
}
canvas {
	display: block;
}
.textiboi {
	text-align: center;
	color: #ffffff;
	font-family: monospace;
}
.header {
	/*top:45%;*/
	top: 45%;
	color: #dddddd;
}
.footer {
	bottom: 3%;
}
.description {
	color: gray;
	padding-top: 50px;
}
.btn {
	border-radius: 30px;
	padding: 10px 30px;
}
a,
a:hover,
a:visited {
	color: red;
	text-decoration: none;
}
.disable-selection {
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer */
	-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
	-webkit-user-select: none; /* Chrome, Safari, and Opera */
	-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
h1 {
	font-family: "Sriracha", cursive;
}
