.events-container {
  display: flex;
  flex-direction: column;
  align-items: right;
  padding: 20px;
  justify-content: space-between;
}
.events-title {
  font-family: var(--title-font);
  font-size: 2.5rem;
  color: var(--navy-color);
  margin-bottom: 20px;
  font-weight: 700;
}
.events-container {
  width: 100%;
  /* max-width: 1200px; */
}
.event-item {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  border-bottom: 1px solid var(--warm-gray);
  margin-bottom: 20px;
  align-items: center;
  align-content: center;
  align-self: center;
}
.event-top, .event-bottom{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: right;
}
.event-top h3 {
  font-family: var(--headline-font);
  font-size: 1.8rem;
  color: var(--navy-color);
  margin-bottom: 10px;
  font-weight: 600;
}
.event-top p, .event-bottom p {
  font-family: var(--headline-font);
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 10px;
 
}
.event-bottom p, .event-bottom a {
    align-self: end;
}
@media screen and (max-width: 768px) {
  .events-container{
    width: 90%
  }
  .events-title{
    width: 100%;
    text-align: center;
  } 
  .event-item {
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
  .event-top, .event-bottom{
    align-items: center;
  }
  .event-top h3, .event-top p, .event-bottom p {
    text-align: center;
  }
}
  .event-top, .event-bottom{
    align-items: center;
  }
  .event-top h3, .event-top p, .event-bottom p {
    text-align: center;
  }

  
  