.black {
	color: black;
}

body {
	display: block !important;
	width: 100vw !important;
	height: 100vh !important;
}

#canvas {
	width: 100vw;
	height: 100vh;
	bottom: 0 !important;
    position: absolute;
	margin: 0;
}

@media only screen and (max-width: 600px) {
	#canvas {
		margin-top: -20px;
		position: relative !important;
	}
	h2 {
		top: 8% !important;
		font-weight: 300 !important;
		font-size: 18px !important;
	}
	#rtr570 {
		top: 14% !important;
		font-size: 12px !important;
	}
}

@media only screen and (min-width: 700px) {
	html,
	body {
		width: 100%;
		height: 100%;
		margin: 0;
	}
	#canvas {
		width: 100%;
		height: 100%;
	}
	h2 {
		top: 10% !important;
		font-weight: 300;
		font-size: 20px !important;
	}
	#rtr570 {
		top: 16% !important;
		font-size: 14px !important;
	}
	.subs {
		position: absolute;
		left: 12.5%;
		width: 240px;
		align-items: center;
		padding: 15px;
		border: 3px solid black;
		border-radius: 5px;
		background: white;
		box-shadow: 8px 8px 0 rgb(0 0 0 / 20%);
		z-index: 2;
		display: block;
		top: 40%;
	}
}

.subs {
	position: absolute;
	left: 0 !important;
	right: 0 !important;
	text-align: center !important;
	display: block;
	width: 240px;
	align-items: center;
	padding: 10px 10px 20px 10px;
	border: 3px solid black;
	border-radius: 5px;
	background: white;
	box-shadow: 8px 8px 0 rgb(0 0 0 / 20%);
	z-index: 2;
	margin: auto;
}

.btn {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	background: white;
	padding: 5px 16px 5px 16px;
	border: 3px solid black;
	margin: 0;
	box-shadow: 0 0 0 black;
	transition: all 0.2s;
	border-radius: 5px;
	transition: all 0.2s;
}

.btn:last-child {
  margin: 0;
}

.btn:hover {
  box-shadow: 0.1rem 0.1rem 0 black;
  transform: translate(-0.1rem, -0.1rem);
}

.btn:active {
  box-shadow: 0 0 0 black;
  transform: translate(0, 0);
}

.options {
	display: block;
	flex-direction: row;
	justify-content: space-between;
}

.mid {
	text-align: center !important;
	width: 100vw;
	height: 100vh;
	justify-items: center;
	justify-content: center;
	text-align-last: center;
	left: 0 !important;
	right: 0 !important;
	position: absolute;
}
* {
	cursor: default;
}

.cover {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.blur-in {
    -webkit-animation: blur 2s forwards;
    -moz-animation: blur 2s forwards;
    -o-animation: blur 2s forwards;
    animation: blur 2s forwards;
}

.blur-out {
    -webkit-animation: blur-out 2s forwards;
    -moz-animation: blur-out 2s forwards;
    -o-animation: blur-out 2s forwards;
    animation: blur-out 2s forwards;
}

@-webkit-keyframes blur {
    0% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }
}

@-moz-keyframes blur {
    0% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }
}

@-o-keyframes blur {
    0% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }
}

@keyframes blur {
    0% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }

    100% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }
}

@-webkit-keyframes blur-out {
    0% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }

    100% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }
}

@-moz-keyframes blur-out {
    0% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }

    100% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }
}

@-o-keyframes blur-out {
    0% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }

    100% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes blur-out {
    0% {
        -webkit-filter: blur(4px);
        -moz-filter: blur(4px);
        -o-filter: blur(4px);
        -ms-filter: blur(4px);
        filter: blur(4px);
    }

    100% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
        filter: blur(0px);
    }
}

.pop-up {
    position: fixed;
    margin: 5% auto;
    left: 0;
    right: 0;
    z-index: 2;
}

/* body {
		  -webkit-animation: background 10s ease-in-out infinite;
		  animation: background 10s ease-in-out infinite;  
		}

		@-webkit-keyframes background {
		  0% { background-color: #f99; }
		  33% { background-color: #9f9; }  
		  67% { background-color: #99f; }
		  100% { background-color: #f99; }
		}

		@keyframes background {
		  0% { background-color: #f99; }
		  33% { background-color: #9f9; }  
		  67% { background-color: #99f; }
		  100% { background-color: #f99; }
		} */
