@font-face { font-family: Cascadia Code; src: url(https://terminalnuget.blob.core.windows.net/feed/Cascadia.ttf); } h1,h2,h3,h4,h5,h6,p,pre,a,ul,li,main,textarea{ font-family: Cascadia Code !important; }

html, body {
    margin: 0;
    padding: 0;
	min-height: 100%;
	overflow: hidden;
	font-family: "Montserrat", sans-serif;
}

body {
	background-color: #021300;
    background-image: url('images/hacking.gif');
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	background-size: cover;
	
	display: grid;
    place-items: center;
    height: 100vh;
}

iframe {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    border: none;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
}

h1 {
    font-size: 2em;
    text-shadow: 2px 2px #222222;
    margin-top: 2em;
    color: #FFFFFF;
}

p {
	color: #FFFFFF;
}

#pwd {
	font-size: 120%;
}

#mute {
	top:20px;
	right:20px;
    position: absolute;
    background-color: #06490079;
    border-radius: 20px;
    padding: 10px;
    width: 5vw;
    height: 5vw;
    border: 2px solid transparent;
    transition: all 0.3s;
}

#mute:hover {
    border: 2px solid #021300;
    background-color: #064900ce;
}

#mute:active {
    animation: cssAnimation;
    animation-duration: 0.3s;
    background-color: #a9ffa1f1;
}

#toastContainer {
    position: absolute;
    visibility: hidden;;
    bottom: 3vh;
    padding: 20px;
    background-color: #141414dc;
}

#toast {
    font-size: 2rem;
    color:#ff0000;
    text-shadow: 2px 2px #5a0000;
}

@keyframes cssAnimation {
    0% {
        background-color: #064900ce;
    }
    50% {
        background-color: #064900ce;
    }
    100% {
        background-color: #a9ffa1f1;
    }
  }

#mute img {
	width: 5vw;
	height: auto;
}

#mute #play {
	display: none;
}

#mute.playing #play {
	display: block;
}

#mute.playing #pause {
	display: none;
}

#submit {
	display: inline-block;
	border-radius: 4px;
	background-color: #3b3b3b;
	border: 4px solid #222222;
	color: #afafaf;
    text-shadow: 2px 2px#222222;
	text-align: center;
	font-size: 200%;
	padding: 2%;
	width: 30%;
	transition: all 0.5s;
	cursor: pointer;
	margin: 0;
}

#submit span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

#submit span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

#submit:hover span {
	padding-right: 25px;
}

#submit:hover span:after {
	opacity: 1;
	right: 0;
}

#goBack {
	display: inline-block;
    position:absolute;
	background-color: #0000004f;
	border: 4px solid #181818;
	color: #FFFFFF;
	text-align: center;
    text-shadow: 2px 2px #222222;
	font-size: 220%;
	padding: 2vh;
	width: 200px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
	bottom: 0;
    z-index: 10;
}

#goBack span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

#goBack span:after {
	content: '\00ab';
	position: absolute;
	opacity: 0;
	top: 0;
	left: -20px;
	transition: 0.5s;
}

#goBack:hover span {
	padding-left: 25px;
}

#goBack:hover span:after {
	opacity: 1;
	left: 0;
}

@media screen and (max-width: 900px) {
	/* For mobile phones: */
	#mute img {
		width: 20%;
		position: absolute;
		top: 0px;
		right: 0px;
	}

	#submit {
		width: 50%;
	}
	#goBack {
		margin-left: 0;
		animation: phone 2s forwards;
		width: 50%;
	}

	@keyframes phone {
		1%{left:0}
		10% {transform: translateY(200%);}
	}
}

@media screen and (min-width: 901px) {
	/* For desktop: */
	#goBack {
		-webkit-animation: mymove 2s forwards;
		        animation: mymove 2s forwards;
		-webkit-animation-fill-mode: forwards;
		        animation-fill-mode: forwards;
	}

	@-webkit-keyframes mymove {
		10% {-webkit-transform: translateY(200%);transform: translateY(200%);}
		100% {left: 0;}	
	}

	@keyframes mymove {
		10% {-webkit-transform: translateY(200%);transform: translateY(200%);}
		100% {left: 0;}	
	}
}

@media screen and (max-width: 900px) {
	/* For landscape phones w/ keyboard: */
	#submit {
		width: 50%;
	}
	#goBack {
		animation: phone 2s forwards;
		width: 50%;
	}

	@keyframes phone {
		1%{left:0}
		10% {transform: translateY(200%);}
	}
}

@media print {
	p {
		color: red;
	}
}