@import url(/css/background.css);
@import url(/css/navbar.css);

#home {
  display: block;
  height: 100vh;
  margin-left: 50px;
}

hero-section {
  display: flex;
  align-items: center;
  height: 100%;
}

hero-content {
  width: 55%;
  margin-left: 10px;
}

footer {
  background-color: var(--dim);
  opacity: 1;
  padding: 30px;
}

.hero-header {
  font-size: 60px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

#history {
  display: block;
  margin-left: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

timeline {
  display: flex;
  flex-direction: column;
  border-left: 5px solid var(--font);
  margin-left: 30px;
  width: fit-content;
  margin-bottom: 50px;
}

timeline-part {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

timeline-part-header {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

timeline-part-desc {
  font-size: 18px;
  margin-bottom: 10px;
}

timeline-part-desc ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

timeline-part-desc li {
  margin-top: 3px;
  margin-bottom: 3px;
}

timeline-part-desc a:link,
timeline-part-desc a:visited,
timeline-part-desc a:hover,
timeline-part-desc a:active {
  text-decoration: underline;
}

hero-content[type="history"] {
  width: 70%
}

.hero-header[type="history"] {
  font-size: 50px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

@media (max-width: 1000px) {
  hero-content {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }

  hero-content[type="history"] {
    width: 100%
  }

  #history {
    display: block;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  #home {
    display: block;
    height: 100vh;
    margin-left: 30px;
    margin-right: 30px;
  }

  .hero-header {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .hero-header[type="history"] {
    font-size: 40px;
  }

  timeline {
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--font);
    margin-left: 10px;
    width: fit-content;
    margin-bottom: 50px;
  }

  timeline-part {
    margin-left: 20px;
  }


  timeline-part-header {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  timeline-part-desc {
    font-size: 15px;
    margin-bottom: 10px;
  }
}