﻿.decade-title {
  font-size: 100px !important;
}

.link-decade {
  color: #000000 !important;
}

  .link-decade:hover {
    color: var(--Orange600) !important;
  }

.link-timeline {
  color: #000000 !important;
  position: relative;
  margin-right: 40px;
}

  .link-timeline:before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    width: 20px; /* ajusta la longitud de la línea horizontal */
    height: 1px; /* ajusta el grosor de la línea horizontal */
    background-color: black; /* color de la línea horizontal */
  }

  .link-timeline:last-child {
    margin-right: 0; /* elimina el margen derecho del último enlace */
  }

    .link-timeline:last-child:before {
      display: none; /* oculta la línea horizontal después del último enlace */
    }

  .link-timeline:hover {
    font-weight: 700;
    text-decoration: underline !important;
  }

.column-divider {
  border-right: 2px solid #000; /* Define el estilo de la línea */
}
.timeline-img-circle {
    max-width: 200px;
    max-height: 200px;
}

.progress {
    height: 3px;
    border-radius: 0;
    background-color: white;
    background-image: linear-gradient(to right, #313131, black);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
}
@media (max-width: 991px) {
  .column-divider {
    border-right: none; /* Elimina la línea en dispositivos pequeños */
  }
}

@media (min-width: 769px) {
  .year-title {
    font-size: 4rem !important;
  }
}

@media (max-width: 768px) {
  .img-timeline-2000s {
    width: 320px !important;
    height: 320px !important;
  }
  .img-timeline {
    height: 320px;
  }
}

@media (max-width: 425px) {
  .decade-title {
    font-size: 50px !important;
  }
}

