body {
    background-color: #8ACE00;
}
hr {
  height: 0; 
  border: 0; 
  border-top: 1px solid black; 
}
.navbar {
  overflow: hidden;
  background-color: #fd08fd;
  font-family: "Arial Narrow";
  display: flex;
}
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #fec0ce;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fd08fd;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {
  background-color: #fec0ce
}
.dropdown:hover .dropdown-content {
  display: block;
}
.image {
  position: relative;
  width: 400px;
}
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.image__img {
  display: block;
  width: 100%;
}
.image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-family: "Arial Narrow";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.image__overlay--blur {
  backdrop-filter: blur(2px);
}
.image__overlay > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}
.image__overlay:hover {
  opacity: 1;
}
.image__overlay.image__overlay:hover > * {
  transform: translateY(0);
}
.image__title {
  font-size: 2em;
  font-weight: bold;
}
.image__description {
  font-size: 1.2em;
  margin-top: 0.25em;
  text-align: center;
}
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 15px auto;
}
.container {
  margin-bottom: -50px;
  padding: 10px 50px;
  position: relative;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
}
@keyframes movedown {
  0% {
    opacity: 1;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.container:nth-child(1) {
  animation-delay: 0s;
}
.container:nth-child(2) {
  animation-delay: 1s;
}
.container:nth-child(3) {
  animation-delay: 2s;
}
.container:nth-child(4) {
  animation-delay: 3s;
}
.container:nth-child(5) {
  animation-delay: 4s;
}
.text-box {
  padding: 20px 30px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  font-size: 15px;
}
.left-container {
  left: -75px;
}
.right-container {
  left: 48%;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;
  background: #fff;
  top: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -1;
  animation: moveline 4s linear forwards;
}
@keyframes moveline {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.text-box h2 {
  font-weight: 600;
}
.text-box small {
  display: inline-block;
  margin-bottom: 15px;
}
.left-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid white;
  right: -15px;
}
.right-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
  left: -15px;
}
.hero {
  width: 100%;
  height: 100vh;
  background: #8ACE00;
  overflow: hidden;
}
.hero .carousel {
  width: 300px;
  margin: 100px auto 0;
  margin-top: 30px;
  overflow: visible;
}
.carousel img {
  -webkit-box-reflect: below 20px linear-gradient(rgba(255,255,255,0.1),rgba(255,255,255,0.3));
}
.model-container {
  margin-left: -60px;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.top-text {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  justify-content: space-between;
}
.text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15px;
}
.website-text {
  margin-top: -30px;
  line-height: 0.5;
}
.soundtrack {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
h3 {
margin-top: 0;
margin-bottom: 20px;
}
h4 {
margin-top: 0;
margin-bottom: -10px;
}