@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #242424;
  background: linear-gradient(180deg, rgb(36, 36, 36) 0%, rgb(36, 36, 36) 34%, rgb(26, 26, 26) 61%, rgb(18, 18, 18) 95%);
}

.container-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #f7f7f7;
  font-family: Oswald;
}
.container-title h1 {
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 4px;
}
.container-title h2 {
  font-weight: 300;
  font-size: 30px;
  color: #ad856f;
  letter-spacing: 1px;
}

footer {
  padding: 1rem 0;
  background-color: rgba(66, 66, 66, 0.6980392157);
  color: #f7f7f7;
  text-align: center;
  font-family: Oswald;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 1px;
}
footer p {
  font-size: 17px;
  letter-spacing: 1px;
}
footer a {
  color: #ad856f;
  font-weight: 400;
  font-size: 18px;
}
footer a:hover {
  color: #f7f7f7;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 0;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 98%;
  margin-left: -1px;
  background: #e0e0e0;
}
.timeline-container {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
}
.timeline-components {
  width: calc(50% - 40px);
  padding: 40px 35px;
  background: rgba(66, 66, 66, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.3), -20px -20px 40px rgba(255, 255, 255, 0.05), inset 2px 2px 4px rgba(255, 255, 255, 0.1), inset -2px -2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #ad856f;
  position: relative;
  margin: 20px 0;
  opacity: 0.85;
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 1s ease, background 0.6s ease;
}
.timeline-components:hover {
  opacity: 1;
  transform: translateY(-8px) scale(1.02);
  background: rgba(66, 66, 66, 0.18);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.4), -25px -25px 50px rgba(255, 255, 255, 0.08), inset 3px 3px 6px rgba(255, 255, 255, 0.15), inset -3px -3px 6px rgba(0, 0, 0, 0.25), 0 0 30px rgba(173, 133, 111, 0.3);
  border: 1px solid rgba(173, 133, 111, 0.4);
}
.timeline-components:nth-child(odd) {
  align-self: flex-start;
  margin-right: auto;
}
.timeline-components:nth-child(even) {
  align-self: flex-end;
  margin-left: auto;
}
.timeline-components:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ad856f;
  border-radius: 50%;
  top: 30px;
}
.timeline-components:nth-child(odd):before {
  right: -50px;
}
.timeline-components:nth-child(even):before {
  left: -50px;
}
.timeline-components-title {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  color: #ad856f;
  transition: 0.4s;
  font-family: Arimo;
  text-align: center;
}
.timeline-components-specs {
  margin: 0 0 8px 0;
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  font-family: Inter;
}
.timeline-components-specs:first-of-type {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #f1f1f1;
}
.timeline .spanbronze {
  color: #ad856f;
  display: flex;
  justify-content: center;
  font-size: 20px;
}

@media screen and (max-width: 780px) {
  .timeline-container {
    gap: 20px;
  }
  .timeline-components {
    background: rgba(12, 12, 12, 0.717);
    width: calc(100% - 40px);
    margin: 15px auto;
    padding: 20px 15px;
  }
  .timeline-components:nth-child(odd), .timeline-components:nth-child(even) {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  .timeline-components::before {
    display: none;
  }
  .viewer:hover {
    transform: none !important;
  }
}
.container-viewer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem;
}

.viewer {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border: 1px solid #ad856f;
  border-radius: 12px;
  position: relative;
  background: url(../images/track.webp);
  backdrop-filter: blur(10px);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(173, 133, 111, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.viewer:hover {
  transform: scale(1.5);
  box-shadow: 0 12px 40px rgba(173, 133, 111, 0.25);
  background-color: rgb(187, 186, 186);
}

span.separator {
  border-top: 1px solid #d3d3d3;
  width: 100%;
  height: 10px;
  display: block;
}

/*# sourceMappingURL=style.css.map */
