body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

h1 {
  font-size: 2em;
}

.search-filter-container {
  display: flex;
}

#search-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

#search-filter-btn {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filters button {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.competition {
  transition: transform 0.3s ease-in-out;
}

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

#competition-list {
  display: flex;
  flex-wrap: wrap;
  transition: transform 0.3s ease-in-out;
}

#competition-list:hover {
  transform: translateY(-5px);
}

.competition-card {
  width: 300px;
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
}

.competition-card h3 {
  margin-bottom: 5px;
}

.competition-card p {
  margin-bottom: 10px;
}

.competition-card .details-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.competition-card p img {
    width: 200px; 
    height: 200px; 
    margin: 0; 
  }

  
  
  
