* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(to bottom right, #676767, #383838, #101010);
  font-family: Georgia, serif;
  background-attachment: fixed;
}

header {
  background-image: linear-gradient(to right, #606060, #606060, #7b7b7b, #828282, #999999);
  color: #eeeeee;
  font-size: 30px;
  text-align: center;
  padding: 50px 0px; }
  header p {
    color: #eeeeee;
    margin-bottom: 0px;
    font-size: 30px;
    margin-top: -15px; }

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #f3f3f3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px 10px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.circles {
  position: relative;
  background-color: inherit;
  width: 100%;
}

.circles::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  left: calc(50% - 16px);
  background-color: #f3f3f3;
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Stagger the containers when not on same side
.left + .circles + .right {
  margin-top: -120px;
}

.right + .circles + .left {
  .margin-top: -120px;
} */


/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f3f3f3;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f3f3f3;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f3f3f3;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f3f3f3 transparent transparent;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: #f3f3f3;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 1000px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 31px;
  }
  
  /* Full-width containers */
  .container {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container::before {
  left: 60px;
  border: medium solid #f3f3f3;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f3f3f3 transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 15px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }
}

p {
  font-size: 17px;
}

ol {
  font-size: 17px;
}

ul {
  font-size: 17px;
}
