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

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

a{
	color: white;
}

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

em{
	font-family: "AtkinsonItalic";
}

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

main{
	position: absolute;
	left: 100px;
}

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

#pictures{
	height: 630px;
	float: left;
	clear: left;
	display: block;
	background-color: #440055;
}
#pictures h1{
	background-color: white;
	color: #440055;
}

#pictures div img{
	max-width: 230px;
	margin-left: 12%;
}


#info{
	float: left;
	background-color: #440055;
	height: 630px;

}

#info p, li{
	font-weight: bold;
}

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

#info div{
	overflow: scroll;
	max-height: 520px;
}

#info div strong{
	color: #440055;
	background-color: white;
	padding: 2px;
}

#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{
	display: flex;
	flex-direction: column;
	font-family:"AtkinsonRegular";
    background-color: #111111;
	color: white;
}

a{
	color: white;
}

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

em{
	font-family: "AtkinsonItalic";
}

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


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

#pictures{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 90%;
	background-color: #440055;
}
#pictures h1{
	background-color: white;
	color: #440055;
}

#pictures div img{
	align-self: center;
	max-width: 230px;
}


#info{
	max-width: 90%;
	background-color: #440055;

}

#info p, li{
	font-weight: bold;
}

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


#info div strong{
	color: #440055;
	background-color: white;
	padding: 2px;
}


 }