body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  background: #f3f3f3;
  color: #333;
}

.banner {
  background-color: #8A0204;
  color: #fff;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.image-card {
  cursor: pointer;
  transition: transform 0.3s;
}

.image-card:hover {
  transform: scale(1.05);
}

img {
  width: 200px;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
}

.votes {
  margin-top: 10px;
  font-size: 1.2em;
}

.leaderboard-section {
  margin-top: 30px;
}

.leaderboard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.leaderboard-item {
  text-align: center;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leaderboard-image {
  width: 100px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}
