.profile-details:before {
  content: "";
  display: table;
  clear: both;
}

* {
  boz-sizing: border-box;
}

html {
  min-height: 100%;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/5175/66223.jpg) no-repeat 70% center #000000;
  background-size: cover;
}
html:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

body {
  padding: 1.5em;
}

.title,
.profile-name {
  font-family: chunk, serif;
  font-weight: 400;
  color: #00BFFF;
  text-transform: uppercase;
}

.title {
  font-size: 3em;
  text-align: center;
  margin: 0 auto 1em;
  line-height: 0.875;
}
.title .char1,
.title .char8 {
  font-size: 1.3em;
  letter-spacing: -0.025em;
}

.profile-list {
  list-style: none inside;
  margin: 0 auto;
  max-width: 32em;
}

.profile-list--item {
  display: inline-block;
  width: -webkit-fill-available;
  background: rgba(0, 0, 0, 0.875);
  padding: 0.75em;
  border: 0.125em solid #00455c;
  margin-bottom: 1.5em;
  text-align: right;
  transition: transform 0.1s linear;
}
.profile-list--item:hover, .profile-list--item:focus {
  transform: scale(1.025);
}

.profile-img {
  height: 4.5em;
  width: 4.5em;
  margin-right: 1.5em;
  float: left;
  display: block;
  border-radius: 50%;
  border: 0.1875em solid #00455c;
}
@media screen and (min-width: 32em) {
  .profile-img {
    width: 6em;
    height: 6em;
  }
}

.profile-name {
  padding-top: 0.5em;
  font-size: 1.5em;
}
@media screen and (min-width: 24em) {
  .profile-name {
    font-size: 1.875em;
  }
}

.profile-quote {
  color: #d6d6d6;
  margin-top: 1.5em;
  font: 400 1em/1.6 "Armata", sans-serif;
}