body {
  font-family:  sans-serif;
  font-size: 30px;
  text-shadow: 1px 1px 1px hsla(0, 100%, 100%, 0.2);
}

.wrapper {
  width: 800px;
  margin: auto;
  padding: 20px 15px 20px 25px;
  background: #FCDEBE;
  box-shadow: 1px 1px 1px 2px hsla(0, 100%, 100%, 0.2);
}
li {
  margin-bottom: 25px;
  border-bottom: 2px solid grey;
}
.address {
  font-size: 18px;
  background: #3A445D;
  padding: 20px;
  color: #fff
}


.back,
.next {
    position: fixed;
    display: block;
    bottom: 50px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    background: navy;
    color: gold;
    cursor: pointer;
    box-shadow: 0 0 5px 2px hsla(0, 100%, 100%, 0.2);
  }
  .next {
    right: 50px;
  }
  .back {
    left: 50px;
  }
  .back:hover,
  .next:hover  {
    box-shadow: 0 0 5px 4px hsla(0, 100%, 100%, 0.5);
  }
