body {
	background-image:url("exit.gif");
	background-size:cover;
}

.caption {
	margin-top:100px;
}

.caption h1 {
	font-family:"Lucida Console";
	color:white;
	text-align:center;
}

.button {
	border: 2px solid white;
	background-color:rgba(0,0,0,0.5);
	padding:10px 20px;
	margin-left:600px;
	margin-right:600px;
	margin-top:200px;
	display:block;
}

.button:hover {
	background-color:black;
	cursor:pointer;
}

.button h3 {
	font-family:"Lucida Console";
	text-align:center;
	color:white;
}

.crash {
	position:fixed;
	z-index:2;
	background-color:rgba(255,255,255,0.8);
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.crash:hover{
	cursor:wait;
}

.crash h1 {
	font-family:Arial;
	margin-left:100px;
	margin-top:150px;
	color:blue;
}

.crash p {
	color:gray;
	margin-left:200px;
	margin-top:20px;
	font-family:Arial;
	font-size:20px;
}

.crash span::before{
	content:"...";
	animation: dots 2s infinite;
}

.crash button {
	right:0px;
	bottom:0px;
	position:fixed;
}

@keyframes dots {
	0%{content:" ";}
	33%{content:".";}
	66%{content:"..";}
	100%{content:"...";}
}