* {
  /*margin: 0;*/
  padding: 0;
  box-sizing: border-box;
  font-family: 'Century Gothic', sans-serif;
}

body {
  background-color: #121212;
  color: #f5f5f5;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2 {
  text-align: center;
  color: yellow;
  font-family: 'Century Gothic', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  font-size: 1.2em;
  text-align: center;
  color: #d0d0d0;
}


.image {
  width: 700px;
  height: 400px;
}

.timeline {
  margin:50px auto;
  position: relative;
}

.timeline::after{
  content: '';
  position: absolute;
  background: white;
  width: 6px;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -4px;
}


.timeline-box {
  padding: 10px 40px;
  width: 50%;
  position: relative;
}

.timeline-box:nth-child(even)
{
  left: 50%;
}

.timeline-content {
  background: black  ;
  padding: 20px 30px;
  border-radius: 6px;
  border: 5px solid yellow;
  box-shadow: rgba(116,564,204,0.3) 0px 7px 29px 0px;
}

.timeline-box:nth-child(even) .timeline-content {
  border: 5px solid cyan;
  background: black;
}

.timeline-box:nth-child(even) .timeline-content p {
  color: white;
}

.timeline-box:nth-child(even) .timeline-content h2 {
  color: cyan;
}

.timeline-content p {
  color: white;
}

.timeline-content h2 {
  color: yellow;
}

h1.see-more{
  color: red;
  
}