* {
	box-sizing: border-box;
}

/* Add pillars around content */

html, body {
	background-image: url("img/wall.jpg");
	background-size: 512px;
	padding: 0;
	margin: 0;
	z-index: -1;
}

#main {
	background-color: black;
	box-shadow:
		10px 0px 20px 2px black,
		-10px 0px 20px 2px black;
	margin: auto;
	width: 950px;
	height: 1200px;
	border: 1px solid rgb(64, 64, 64);
}

#bar {
	height: 25px;
	background-color: rgba(255, 255, 255, 0.1);

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 5px;
}

#bar .text {
	margin: 0;
	padding: 2px;
	padding-left: 10px;
}

#bar .link {
	margin: 0;
	padding: 2px;
	padding-right: 0;
}

#bar .link a {
	border: 1px solid red;
	padding:1px 5px 1px 5px;
}

#bar .link a:hover {
	background-color: rgba(255, 0, 0, 0.4);
}

#bar form input {
	width: 100px;
}

#bar form input[type="submit"] {
	width: 60px;
	margin-right: 5px;
}

#title {
	height: 80px;
	display: flex;
	align-items: center;
	gap: 25px;

	background-image: linear-gradient(rgba(0,0,0,0.2), #000), url("img/flame.gif");
	background-size: 40% 80px;
}

#title_content {
	height: 100%;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-left:10px;
}

#title_content h1 {
	white-space: nowrap;
	text-shadow: 2px 0 black, -2px 0 black, 0 2px black, 0 -2px black,
	             1px 1px black, 1px -1px black, -1px 1px black, -1px -1px black;
}

#title_bg {
	height: 40px;
	flex-grow: 100;
	background-image: url("img/dragon.png");
	background-repeat: round;
	background-size: 80px;
}

#sacara {
	margin: 2.5%;
	width: 235px;
	background-image: url("img/flame.gif");
	background-size: 80px;
	padding: 5px;
	text-align: center;
}

#sacara > a {
	color: white;
	font-size: 35px;
	text-shadow: 2px 0 black, -2px 0 black, 0 2px black, 0 -2px black,
	             1px 1px black, 1px -1px black, -1px 1px black, -1px -1px black;
	text-decoration: none;
}

#content {
	padding: 15px;
	padding-top: 0;
}

p {
	color: white;
}

h1, h2, h3 {
	color: white;
}

a {
	color: red;
	text-shadow: 1px 1px 2px orange;
}

a:hover {
	color: yellow;
}
