html
{
	height:100%;
	width:100%;
}

body
{
	height:100%;
	width:100%;
	margin: 0px;
	padding: 0px;
	background-color:#000;
}

.dialog
{
	position:absolute;
	left:50%;
	top:50%;
	text-align:center;
	background-color:white;
	font-family:Arial,sans-serife;
}

.dialog p
{
	font-size:140%;
}

.dialog h1
{
	font-size:200%;
}

.midsize
{
	height:340px;
	width:600px;
	margin-top:-170px;
	margin-left:-300px;
}

.triangle-border
{
  position:relative;
  padding:15px;
  margin:1em 0 3em;
  border:5px solid #fff;
  background-color:#001437;
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  border-radius:10px;
}

.triangle-border:before {
  content:"";
  position:absolute;
  bottom:-20px; /* value = - border-top-width - border-bottom-width */
  left:40px; /* controls horizontal position */
  border-width:20px 20px 0;
  border-style:solid;
  border-color:#fff transparent;
  /* reduce the damage in FF3.0 */
  display:block;
  width:0;
}

/* creates the smaller  triangle */
.triangle-border:after {
  content:"";
  position:absolute;
  bottom:-13px; /* value = - border-top-width - border-bottom-width */
  left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
  border-width:13px 13px 0;
  border-style:solid;
  border-color:#fff transparent;
  /* reduce the damage in FF3.0 */
  display:block;
  width:0;
}
