:root {
  --primary-color: #31b63a;
  --secondary-color: #82ff63;
  --dark-color: #000000;
  --gray-color: #f8f9fc87;
}

.event-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

body {
  font-family: 'Sahel', sans-serif;
}

.font-bold{
    font-weight: bold;
}
.text-1{
    font-size: 30px;
}