*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: rgb(210,210,255);
}

header{
	max-width: 960px;
	/*background: yellow;*/
	text-align: center;
}

nav{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
}

section{
	max-width: 960px;
	/*background: #9999aa;*/
	text-align: center;
	padding: 0 5px;
}

section ul{
	display: flex;
	flex-wrap: wrap;
}

h1, h2{
	padding: 20px;
}

ul{
	/*margin: 0 15px;*/
}

li{
	list-style: none;
	padding: 8px 10px;
	/*background: gray;*/
}

a{text-decoration: none; color: #0000ee;}
a:hover{text-decoration: underline;}

span{color: #0000ee; font-size: ;}

footer{
	max-width: 960px;
	width: 100%;
	background: #eee;
	padding: 15px 10px;

	display: flex;
	justify-content: space-between;

	position: fixed;
	bottom: 0;
	/*left: calc(50% - 480px);*/

	border-top: 1px solid #000;
	background: rgb(210,210,255);
}

footer p{margin-bottom: 0;}

@media (min-width: 960px){
	footer{
		left: calc(50% - 480px);
	}
}

.center{margin: 0 auto;}
.center-fixo{left: calc(50% - 960px;)}
.preenchimento-baixo{padding-bottom: 25px;}
.preenchimento-baixo-plus{padding-bottom: 95px;}
.borda-baixo{border-bottom: 1px solid #000;}

.tdn{color: #000;}
.tdn:hover{text-decoration: none;}

.versiculos{
	text-align: left;
	padding: 0 10px;
}

.versiculos p{
	margin-bottom: 10px;
}

.livro li{
	display: block;
	width: 5%;
	margin: 10px 0 10px 5px;
}

@media (max-width: 600px){
	.livro li{
		width: 15%;
		margin: 10px 3px;
	}
}

/*@media (min-width: 601px){*/