/*******************************************
  Typography
********************************************/
body {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  color: #c1c1c1;
  background: #1a1a1a; }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.03em;
  width: 100%;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif; }

a, a:hover, a:visited {
  color: #46B5DE;
  text-decoration: none; }

h1 {
  font-size: 60px;
  margin: 0 0 40px 0;
  font-weight: 700; }
  h1 span {
    font-weight: 300;
    font-size: 30px; }
  @media (max-width: 600px) {
    h1 {
      font-size: 60px; } }

h2 {
  font-size: 40px;
  border-bottom: 5px solid #BC9B66;
  padding-bottom: 5px; }
  @media (max-width: 600px) {
    h2 {
      font-size: 36px; } }

h3 {
  font-size: 24px;
  margin: 40px 0 10px; }
  h3 span {
    font-weight: 300;
    margin-top: 3px; }

p {
  margin-bottom: 1em; }

strong {
  font-weight: 700; }

.lede {
  font-size: 20px; }

.title {
  color: #BC9B66; }

.note {
  display: block;
  font-size: 12px;
  opacity: 0.4;
  font-weight: 400; }

blockquote {
  font-size: 22px;
  padding: 15px 30px;
  margin: 30px 0;
  display: flex;
  justify-content: center; }
  blockquote div {
    display: inline-block; }
  blockquote span {
    opacity: 0.40; }

.material-icons {
  font-size: 1.4em;
  vertical-align: middle; }

/*******************************************
  Other
********************************************/
section {
  padding: 60px 30px;
  width: 100%; }
  @media (max-width: 600px) {
    section {
      padding: 60px 15px; } }

.container {
  max-width: 720px; }

.page {
  margin: 0 auto; }

#intro {
  background: #151515;
  padding: 120px 30px; }
  #intro .material-icons {
    margin: 8px 15px 8px 0; }

#work {
  padding-top: 120px; }

#back-to-top {
  display: block;
  background: #151515;
  padding: 60px 30px;
  text-align: center;
  margin-top: 60px; }
  #back-to-top .material-icons {
    margin-bottom: 3px; }

#contact {
  margin-top: 30px; }

.button {
  display: block;
  border-radius: 10px;
  background: #46B5DE;
  font-weight: 700;
  color: #1a1a1a !important;
  padding: 30px;
  text-align: center; }

/*******************************************
  Timeline
********************************************/
#timeline {
  margin-top: 30px; }
  #timeline p {
    margin: 0; }
  #timeline h3 {
    margin: 0; }
  #timeline .lede {
    margin-bottom: 5px; }
  #timeline .entry {
    padding: 30px 0;
    display: flex;
    flex-direction: row; }
    @media (max-width: 600px) {
      #timeline .entry {
        display: block; } }
    #timeline .entry:nth-child(1) .line:before {
      transform: translateY(50%);
      height: calc(50% + 70px); }
    #timeline .entry:nth-child(4) .line:before {
      transform: translateY(-50%);
      height: calc(50% + 70px); }
    #timeline .entry div:nth-child(1) {
      width: 150px;
      text-align: right;
      margin-bottom: 0px; }
      @media (max-width: 600px) {
        #timeline .entry div:nth-child(1) {
          width: 100%;
          text-align: left;
          margin-bottom: 10px; } }
    #timeline .entry div:nth-child(2) {
      width: 0; }
      @media (max-width: 600px) {
        #timeline .entry div:nth-child(2) {
          display: none; } }
    #timeline .entry div:nth-child(3) {
      flex: 1;
      align-self: center; }
  #timeline .line {
    position: relative;
    padding: 0 60px; }
    #timeline .line:before {
      content: '';
      display: block;
      width: 2px;
      height: calc(100% + 70px);
      background: #333;
      margin-left: -1px; }
    #timeline .line:after {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background: #333;
      border-radius: 10px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
