/* tag edits */
body { margin: 0; background-color: black; }


/* header edits */
#header {
	width: auto;
	height: 525px;
	background-image: url("images/headers/pgr2.png");
	background-size: cover;
	margin-top: 0;
}

#header-text {
	text-align: center;
	color: white;
	font-size: 35px;
	font-weight: bold;
	padding-top: 50px;
}


/* nav bar edits */
#nav-wrapper { background-color: gray; text-align: center; }
#nav a:hover { background-color: black; color: white; }
#nav .active { background-color: black; color: white; } /* keep track of the current page */

#nav {
	width: 950px;
	margin: 0 auto;
	font-size: 0; /* so that there's no whitespaces for inline blocks */
}

#nav a {
	width: 275px;
	height: 50px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	font-size: 25px;
	text-decoration: none;
	color: black;
}


/* game-intro edits */
#game-intro {
	width: 900px;
	margin: 0 auto;
	font-size: 20px;
	padding: 20px;
	background-color: white;
	color: black;
}

#game-intro-header {
	font-weight: bold;
	text-align: center;
	font-size: 25px;
}


/* in-game-powers edits */
#in-game-powers img {
	width: 110px;
	height: 110px;
	border: 2px solid black;
}

#in-game-powers {
	width: 900px;
	margin: 0 auto;
	font-size: 20px;
	padding: 20px;
	background-color: white;
	color: black;
	text-align: center;
}

#igp-header {
	font-weight: bold;
	text-align: center;
	font-size: 25px;
}

#babylonia:hover ~ #babylonia-intro { display: block; }
#foresaken:hover ~ #foresaken-intro { display: block; }
#aru:hover ~ #aru-intro { display: block; }
#akdilek:hover ~ #akdilek-intro { display: block; }
#kowloong:hover ~ #kowloong-intro { display: block; }
#ascendants:hover ~ #ascendants-intro { display: block; }
#church:hover ~ #church-intro { display: block; }

.power-info { display: inline-block; position: relative;}
.power-intro { display: none; }

.power-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.power-info:hover .power-text { background-color: black; opacity: 1; }


/* footer edits */
#footer {
	background-color: gray;
	text-align: center;
	font-size: 25px;
	padding: 10px;
	width: auto;
	margin: 0;
}

#footer a { 
	text-decoration: none; 
	color: white;
}
