body {
  background-color: #f9f0e2;
  color: #902a1e;
  font-family: 'Barlow Semi Condensed', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 850px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 8rem;
  margin-bottom: 1.5rem;
}

.intro-images img {
    width: 45%;
    max-width: 250px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0.75rem;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .intro-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }  
  
  .photos img {
    width: 30%;
    margin: 1.5rem;
    border-radius: 8px;
  }  

.lead {
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 1.5rem;
}

.story {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
}

.timeline img {
  width: 80%;
  margin: 2.2rem auto;
  display: block;
}

.palm-logo {
  width: 250px;
  margin: 2rem auto;
  display: block;
}

.shoes {
  width: 375px;
  margin: 2.2rem auto;
  display: block;
}

.quote {
  font-weight: bold;
  font-size: 1.3rem;
  margin: 1rem 0;
}

.awards {
  margin-top: 2rem;
}

.trophy-graphic {
  width: 500px;
  margin-bottom: 0.5rem;
}

.video-title {
  font-size: 3rem;
  margin: 2rem 0 2rem;
}

.video-container iframe {
  border-radius: 10px;
}

.pizza-graphic {
    width: 275px;
    margin: 2.75rem auto;
    display: block;
  }
  
  .arrow-container {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
  }
  
  .arrow {
    font-size: 3rem;
    display: inline-block;
    animation: bounce 1.5s infinite;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }
  
  .sources {
    margin-top: 3rem;
    text-align: left;
    padding: 1rem 0;
  }
  
  .sources h2 {
    font-size: 1.5rem;
    color: #902a1e;
    margin-bottom: 1rem;
  }
  
  .sources ul {
    list-style-type: disc;
    padding-left: 1.5rem;
  }
  
  .sources li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  
  .sources a {
    color: #902a1e;
    text-decoration: underline;
  }
  