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

body{	
    background-color: #111111;
    color: white;
    text-align: justify
}

h1{
    color:white;
    background-color: #440055;
    text-align: center;
}

a{
    color: white;
}

#prev{
    float: left;
    top: 20px;
    left: 20px;
    position:fixed;
    padding: 5px;
    transition-duration: 0.5s;
}
#prev:hover{background-color: #440055;}

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

#next{
    float: right;
    top: 20px;
    right: 20px;
    position:fixed;
    padding: 5px;
    transition-duration: 0.5s;
}
#next:hover{background-color: #440055;}

section{
    float: left;
    margin-left: 15%;
	margin-right: 15%;
}

}

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


body{	
    background-color: #111111;
    color: white;
    text-align: justify
}

h1{
    color:white;
    background-color: #440055;
    text-align: center;
}

a{
    color: white;
}

#return{
    float: left;
    bottom: 20px;
    left: 5px;
    position:fixed;
    padding: 5px;
    transition-duration: 0.5s;
    font-size: small;
    background-color: #440055;
}

#prev{
    float: left;
    top: 50%;
    left: 10px;
    position:fixed;
    padding: 5px;
    font-size: x-large;
    background-color: #440055;
}

#next{
    float: right;
    top: 50%;
    right: 10px;
    position:fixed;
    padding: 5px;
    font-size: x-large;
    background-color: #440055;
}

section{
    float: left;
    margin-left: 15%;
	margin-right: 15%;
}


}