#event-wrapper{
  width: 100%
  height: auto;
}

#event-list{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

#event-list .event-box{
  margin: 1rem;
  overflow: hidden;
  border-radius: 4px;
  max-width: 280px;
  height: auto;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.15);
}

.event-box .event-content{
  padding: 0.5rem;
}

.event-box .event-img img{
  width: 100%;
  height: auto;
}

.event-box .event-name{
  min-height: 55px;
}

.event-box .event-date{
  color: #007a3e;
  font-weight: 700;
  margin: 0.25rem 0; 
}

.event-box .event-loc{
  color: #777;
}

.event-box .event-signup{
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #007a3e;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  margin: 0.5rem 0;
  bottom: 0;
  transition: all 0.2s ease;
}

.event-box .event-signup:hover{
  bottom: 2px;
}