
/* Interests Section */
.interests {
  background-color: #0e0e52;
  color: white;
  border-radius: 10px;
}

.interests h2 {
  color: white;
  text-align: center;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.interest-card {
  background-color: white;
  color: #0e0e52;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.interest-card:hover {
  transform: translateY(-5px);
  background-color: #ffcc00;
  color: #0e0e52;
}

