/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. */

body {
	text-align: center;
	background-image: url("images/bg1.png");
}

h1{
  line-height: 0px;
}

h2{
	color: white;
	font-family: "lucida console";
	font-size: 20px;
}

p{
	color: white;
	font-family: "lucida console";
	font-size: 12px;
}

.wrapper {
	display: inline-block;
	margin: 80px auto;
}

.box {
	background-color: black;
	border: 3px double red;
	width: 500px;
	height: 425px;
}

.inside{
	position: relative;
	border: 1px solid transparent;
	top: 50%;
	transform: translate(0%, -50%);
}