
body {
  margin: 0;
  padding: 0;
  font: 16px/1.6 "Helvetica Neue", Helvetica;
}

img {
  max-width: 500px;
  max-height: 500px;
}

#wrapper {
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 5px;
  padding: 100px;
  box-shadow: -4px 0 10px -5px rgba(0, 0, 0, 0.8);
}

#content {
  margin: 0 auto;
  width: 800px;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.drawer {
  background: #282828;
  color: #8a8a8a;
  height: 100%;
  width: 250px;
}

.drawer ul {
  margin: 0;
  padding: 0;
}

.drawer ul li {
  margin: 0;
  padding: 5px 15px;
  list-style: none;
  border-bottom: 1px solid #151515;
  box-shadow: 0 1px 0 0 #373737;
  -webkit-font-smoothing: antialiased;
}

.drawer ul li:first-child {
  padding-top: 15px;
}

.drawer ul li:last-child {
  padding-bottom: 15px;
  border-bottom: none;
  box-shadow: none;
}

@media screen and (max-width: 400px) {
  #wrapper {
    padding: 15px;
    font-size: 11px;
  }

  #content {
    width: 280px;
  }
}