.competitions {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.competition-card {
  display: flex;
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.competition-card:hover {
  transform: translateY(-5px);
}

.competition-left {
  width: 200px;
  background: #2a2a2a;
  text-align: center;
  padding: 15px;
}

.competition-left img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.competition-left p {
  font-size: 0.9em;
  color: #ccc;
}

.competition-right {
  flex: 1;
  padding: 20px;
}

.competition-right h2 {
  margin-bottom: 10px;
  color: #6a11cb;
}

.competition-right p {
  margin-bottom: 8px;
  color: aqua;
}

.competition-right button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #2575fc;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.competition-right button:hover {
  background: #6a11cb;
}

/* Responsive */
@media(max-width:768px){
  .competition-card {
    flex-direction: column;
  }
  .competition-left {
    width: 100%;
  }
}
.mainHeading {
  font-size: clamp(2rem, 5vw, 7vh);
  text-align: center;
  margin-bottom: 1rem;
  color: rgb(254, 253, 253);
}

.subHeading {
  text-align: center;
  color: rgb(252, 247, 247);
}
