/* Body CSS */
#timeline {
  padding: 20px;
}
#tabs {
  text-align: center;
  width: 230px;
  display: inline-block;
  vertical-align: top;
  padding: 2%;
  position: sticky;
  top: 60px;
}
.tab {
  display: inline-block;
  border-radius: 25px;
  text-align: center;
  transition: all 0.5s;
  padding: 15px;
  margin: 10px 0 10px 0;
  font-size: 20px;
  display: block;
  color: black;
  text-decoration: none;
}
.tab small {
  font-size: 12px;
}
.tab:hover {
  color: #b71b1b;
}
.tab.active {
  background-color: #b71b1b;
  color: white;
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
}
#content {
  width: calc(100% - 230px);
  display: inline-block;
  padding: 2%;
}
#content * {
  animation: dropIn 0.5s
}
#content img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  margin-bottom: 50px;
  border-radius: 15px;
}
#content h1 {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 20px;
}
#content p {
  line-height: 1.5
}
@keyframes dropIn {
   0% {
      opacity: 0;
      transform: translateY(50px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}