* {
  box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}

.main {
  width: 100vw;
  height: 80vh;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  display: flex;
  align-items: flex-start;
}

.title {
  width: 900px;
  height: 10vh;
  text-align: center;
  margin: 0 auto;
  border-bottom: 2px solid #922d8e;
  color: #922d8e;
  text-transform: uppercase;
}

.author {
  float: left;
}

.author img {
  width:50px; 
  float: left;
} 

.author h1 {  
  font-size: 17px;
  font-weight: 100;
  text-align: left;
  padding-left: 70px;
}

.author h1 span {
  font-weight: 600;
}

.icons {
  float: right;
}

ul {
  margin: 0;
  padding: 0;
}

.icons ul li {
  display: inline;
  list-style-type: none;
  padding-left: 45px;
}

.icons ul li a {
  color: #922d8e;
}

.container {
  -webkit-align-self: center;
  align-self: center;
  margin: 0 auto;
  width: 544px;
  height: 600px;
	display: block;
  box-shadow: 0 0 10px #333333;
}

#gallery-wrapper {
  width: 100%;
  -webkit-transition: all 1.5s ease-in-out; 
  -moz-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

#gallery {
  width: 100%;
  height: 60%;
	float: left;
  font-size: 0px;
  position: relative;
  overflow: hidden;
}

img {
	width: 100%;
	height: 100%;
}

.navigation {
  width: 100%;
  height: 40%;
	float: left;
	position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#previous {
	position: absolute;
  width: 50%;
  height: 75%;
  top: 25%;
}

#description {
	background-color: rgba(146,45,142,0.9); 
	position: absolute;
  text-align: center;
  width: 100%;
  height: 25%;
  top: 0;
  left: 0;
  padding-top: 10px;
}

#next {
  position: absolute;
  width: 50%;
  height: 75%;
  top: 25%;
  left: 50%;
}

#previous:before, 
#next:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(146,45,142,0.5);
}

#previous #previous-hover,
#next #next-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 0 solid #ffffff;
    opacity: 0.5;
    padding-top: 30px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out; 
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#previous #previous-hover:hover,
#next #next-hover:hover {
    background-color: rgba(0, 0, 0, 0.4);
    margin: 10px;
    border: 1px solid #ffffff;
    opacity: 1; 
}

p {
  margin: 0;
  color: #ffffff;
  padding: 0 10px;
}

#previous-hover i {
  padding-bottom: 5px;
  color: #ffffff;
}

#next-hover i {
  padding-top: 0;
  color: #ffffff;
}
