
body {
  font-family: 'Inter', sans-serif;
  background-color:#FFF4C9;
}

  
.hero {
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  }
    
.hero h1 {
  font-size: 2.5rem; 
  }
  
.hero .lead {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #333;
  }
  
.scroll-down {
  font-size: 2rem;
  margin-top: 2rem;
  color: #666;
  animation: bounce 2s infinite;
  }
  
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
  }
  
.projects-section {
  background-color: #FAF6E6;
  padding: 4rem 1rem;
  }
  
.card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  }
  
.box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 2rem auto;
  }
  
.pitch-section {
  padding-top: 2rem;
  }
  
.pitch-box {
  padding: 1rem 1rem 1rem 1rem;
  width: 75%;
  } 

.logo {
  width: 32px;
  }
