.timeline {
    background-color: #1D1D1D;
    min-height: 312vh;
    margin: 250px 0 150px 0;
    font-family: "Droid Sans", sans-serif;
    transform: translateX(0);
  }
  /*.timeline:before {
    content: "";
    position: fixed;
    top: 0px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 4px;
    background-color: #fff;
  }*/
  .timeline .entries {
    width: calc(100% - 80px);
    max-width: 800px;
    margin: auto;
    position: relative;
    left: -5px;
  }
  .timeline .entries .entry {
    width: calc(50% - 80px);
    float: left;
    padding: 20px;
    clear: both;
    text-align: right;
  }
  .timeline .entries .entry:not(:first-child) {
    margin-top: -60px;
  }
  .timeline .entries .entry .title {
    font-size: 32px;
    margin-bottom: 12px;
    position: relative;
    color: #aaa;
  }
  .timeline .entries .entry .title:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 4px solid #ffffff;
    background-color: #1D1D1D;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: -73px;
    z-index: 1000;
  }
  .timeline .entries .entry .title.big:before {
    width: 24px;
    height: 24px;
    transform: translate(8px, -50%);
  }
  .timeline .entries .entry .title.big {
    color: #fff;
    font-size: 40px;
  }
  .timeline .entries .entry .body {
    color: #aaa;
  }
  .timeline .entries .entry .body p {
    line-height: 1.4em;
    margin-top: -15px;
  }
  .timeline .entries .entry:nth-child(2n) {
    text-align: left;
    float: right;
  }
  .timeline .entries .entry:nth-child(2n) .title:before {
    left: -63px;
  }
  .timeline .entries .entry:nth-child(2n) .title.big:before {
    transform: translate(-8px, -50%);
  }

  @media (max-width: 768px) {
    .timeline {
        min-height: 350vh;
    }

    .timeline .entries {
        width: calc(100% - 20px);
    }

    .timeline .entries .entry .title {
        font-size: 20px;
    }

    .timeline .entries .entry .title.big {
        font-size: 30px;
    }

    .timeline .entries .entry:not(:first-child) {
        margin-top: -25px;
    }
  }
