@font-face {
  font-family: 'Space Grotesk Bold';
  src: url('../fonts/spacegrotesk-bold.woff2') format('woff2'),
       url('../fonts/spacegrotesk-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Space Grotesk Regular';
  src: url('../fonts/spacegrotesk-regular.woff2') format('woff2'),
       url('../fonts/spacegrotesk-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html, body {
  background-color: #111d5e;
  color: #fff;
  font-size: 1em;
  line-height: 1.6;
  font-family: 'Space Grotesk Regular', sans-serif;
  letter-spacing: .05rem;
  height: 100%;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk Bold', sans-serif;
  margin-bottom: 16px;
}

a {
  color: #fe346e;
  text-decoration: underline;
}
a:hover {
  color: #fe346e;
}

/* Layout: two columns from 40em up, stacked below */
#wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
#left-content, #right-content {
  width: 100%;
  padding: 2rem;
  height: 100vh;
  overflow-y: scroll;
}
@media screen and (max-width: 39.9375em) {
  #left-content, #right-content {
    height: auto;
    overflow-y: auto;
  }
}
@media screen and (min-width: 40em) {
  #left-content { width: 33.3333%; }
  #right-content { width: 66.6667%; }
}

#left-content {
  position: relative;
  background-color: #fff;
  color: #000;
  text-align: center;
}
#left-content .vertical-align {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#left-content h1, #left-content h2, #left-content h3 {
  color: #000;
}
#left-content ul.social-container {
  margin: 8px 0 0;
  list-style: none;
  padding: 0;
}
#left-content ul.social-container li {
  display: inline-block;
  margin-bottom: 8px;
}
#left-content picture {
  margin-bottom: 8px;
  display: inline-block;
}
#left-content picture img {
  width: 160px;
  height: 160px;
  border: 3px solid #b3b3b3;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(17, 29, 94, .3);
}
@media screen and (max-width: 39.9375em) {
  #left-content picture img {
    width: 120px;
    height: 120px;
  }
}

/* Pill-style link buttons, reused across the social list and content lists */
.pill-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
.pill-list li {
  display: inline-block;
  margin-bottom: 8px;
}
.pill-list a, .pill-list span {
  font-size: .8rem;
  padding: .2rem 1rem;
  text-transform: uppercase;
  color: #fe346e;
  border-radius: 12px;
  border: 1px solid #fe346e;
  text-decoration: none;
  transition: all .2s linear;
}
.pill-list a:hover {
  color: #fff;
  background: #fe346e;
}

#right-content .strong {
  text-decoration: underline;
}
#right-content span.gif {
  text-decoration: underline;
  cursor: pointer;
}
#right-content #works, #right-content #perso, #right-content #now {
  margin: 40px 0;
}

#coucou {
  padding: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 15px 0 rgba(255, 255, 255, .2);
  margin-bottom: 20px;
}
#coucou h2 {
  margin: 0;
}
