 @media screen and (min-width: 1080px) {

	

body{
	font-family:"AtkinsonRegular";
    background-color: #111111;
	color: white;
}

a{
	color: white;
	text-decoration-line: none;
}

h1,h2,h3,h4,strong{
	font-family: "AtkinsonBold";
}

em{
	font-family: "AtkinsonItalic";
}

h5,h6{
	font-family: "AtkinsonBoldItalic";
}

main{
	position: absolute;
	display: flex;
	flex-direction: row;
	left: 80px;
	height: 98%;
	width: 100%;
}

section{
	padding: 10px;
	margin: 10px;
}

#bible{
	display: flex;
	flex-direction: column;
	background-color: #440055;
	overflow: scroll;

}
#bible h1{
	background-color: #111111;
	color: white;
	text-align: right;
	padding: 5px;
}

#bible h2{
	background-color: white;
	color: #440055;
}

#bible a:hover{
	background-color: white;
	color: #440055;
}

#safac{
	background-color: #440055;
}

#safac h1{
	color: #440055;
	background-color: white;
}

#grid{
	overflow: scroll;
}

#safac div.profile{
	position: relative;
	display: inline-block;
	margin: 10px;
	text-align: center;
}

#safac div.profile img{
	width: 100%;
	height: auto;
	opacity: 1;
	transition-duration: 0.5s;
}
#safac div.name{
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, 0%);
	transition-duration: 0.5s;
}

#safac div.profile:hover img{	opacity: 0.3;}
#safac div.profile:hover .name{ opacity: 1; transform: translate(-50%, -50%);}


#return{
    float: left;
    bottom: 20px;
    left: 20px;
    position:fixed;
    padding: 5px;
    transition-duration: 0.5s;
    text-shadow: 0px 0px 15px #000000;
}
#return:hover{background-color: #440055;}
 
}

 @media screen and (max-width: 1080px) {


body{
	font-family:"AtkinsonRegular";
    background-color: #440055;
	color: white;
}

a{
	color: white;
}

h1,h2,h3,h4,strong{
	font-family: "AtkinsonBold";
}

em{
	font-family: "AtkinsonItalic";
}

h5,h6{
	font-family: "AtkinsonBoldItalic";
}

#bible h1{
	background-color: white;
	color: #440055;
}

#grid{
	display: flex;
	flex-direction: column;
	align-items: center;
}


#safac h1{
	color: #440055;
	background-color: white;
}


#safac div.profile{
	text-align: center;
}

#safac div.profile img{
	width: 100%;
	height: auto;
	opacity: 1;
}
#safac div.name{
	align-self: center;
	color: #440055;
	background-color: white;
	transform: translateY(-40px);


}

 }