body {
  background: #090909;
  color: white;
  font-family: "Source Sans Pro",Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
  max-width: 960px;
  margin: 70px auto;
  padding: 0 20px;
  letter-spacing: .3px;
}

/* Main Layout */
header {
  width: 250px;
  position: fixed;
}

section {
  margin-left: 250px;
}

article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 50px;
}

.fullwidth article {
  display: block;
}

.client {
  display: block;
  font-size: 14px;
  box-shadow: none;
  color: #d6d5d5;
  line-height: 16px;
}

/* Text Styling */
h1 {
  font-size: 20px;
  margin: 0;
  margin-bottom: 5px;
  font-weight: 400;
}

h2 {
  font-size: 25px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 75px;
  margin-bottom: 0;
  position: relative;
}

p, li {
  font-size: 18px;
  padding: 0 0 10px 0;
  line-height: 1.8em;
}

a {
  color: #00FFCA;
  text-decoration: none;
  box-shadow: inset 0 -3px 0 -1px #00FFCA;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a:hover {
  box-shadow: inset 0 -23px 0 -1px #00FFCA;
  color: black;
  text-decoration: none;
}

.stripped {
  color: white;
  box-shadow: none;
}

/* Social Media Label */
.socialpeek {
  display: inline-block;
  position: relative;
  padding: 0;
}

.socialpeek li {
  position: absolute;
  list-style-type: none;
  opacity: 0;
  color: #00FFCA;
  font-size: 12px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Elements */
.social a {
  display: inline-block;
  font-size: 20px;
  margin: 5px 5px 0 0;
  transition: all .15s ease-in-out;
}

.social a:hover {
  box-shadow: none;
  color: #00FFCA;
}

article:first-of-type p {
  margin-top: 5px;
}

.profile {
  width: 125px;
  height: 125px;
  margin-top: 20px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  object-fit: cover;
  border-radius: 50%;
  object-position: top;
}

/* Media Queries */
@media(max-width: 767px) {
  body {
    margin: 20px 0;
  }

  article {
    grid-column-gap: 15px;
  }

  header {
    width: 100%;
    position: static;
    display: flex;
    justify-content: space-between;
  }

  .profile {
    margin-top: 0;
  }

  .client {
    padding-top: 10px;
  }

  section {
    margin: 0;
  }

  h3 {
    margin-top: 40px;
  }
}
