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

h1 {
  text-align: center;
}

.events-container p {
  color: #171717;
  margin-bottom: 0px;
}

 .search-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin: 0 auto;
    width: 50%;
    justify-content: center;
  }

  .search-container input,
  .search-container label,
  .search-container select {
    margin-bottom: 10px;
  }

.search-container button{
  margin-bottom: 15px;
  border-radius:5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  padding-left:10px;
  padding-right: 10px;
}

#eventsList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

#eventsList li {
  width: calc((100% - 40px) / 3); 
  margin: 32px auto;
  border: 1.5px solid #ccc;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}


.eventimg {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding-bottom: 75%;
  filter: none;
        }

.eventimg:hover{
 filter: grayscale(1.0);
        }


.getTickets {
    align-items: center;
    animation-timing-function: ease-in-out;
    appearance: none;
    border: 2px solid;
    border-radius: 100px;
    display: inline-flex;
    font-family: Poppins,sans-serif;
    font-size: .9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.36;
    text-align: center;
    text-decoration: none;
    transition: all .15s ease-in-out;
    min-height: 3.5rem;
    padding: 0 1.5625rem;
    margin-top: 10px;
    background-color: #ff9f19;
    border-color: #ff9f19;
    color: #171717;
}
.getTickets:hover {
  background-color:#FFB21E !important;
  color: #171717 !important;

}
.getTickets:active {
  position:relative;top:1px;
}

/* Tablets */
@media screen and (max-width: 768px) {
  #eventsList li {
  width: calc((100% - 40px) / 2); 
}

/* Phones */
@media screen and (max-width: 500px) {
  #eventsList li {
  width: calc((100% - 40px) / 1); 
}