.events-container {
  display: grid;
  /* grid-template-columns: 200px 200px 200px 200px; */
  grid-template-columns: repeat(auto-fit, minmax(210px, 210px));
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  column-gap: 50px;
  row-gap: 50px;
  justify-content: center;
}

.event-box {
  height: 240px;
}

.box-header {
  box-shadow: 0.5px 0.5px 2px #00000029;
  border-radius: 10px 10px 0px 0px;
  /* opacity: 1; */
  background-color: rgba(253, 224, 177, 0.6);
  height: 74px;
}

.box-content {
  box-shadow: 0.5px 0.5px 2px #00000029;
  border-radius: 0px 0px 10px 10px;

  height: 164px;
  background-color: rgba(240, 255, 255, 0.6);

  display: flex;
  flex-direction: column;
  padding-top: 23px;
  padding-left: 12px;
}

.header-content {
  color: #E7886B;
  font-weight: bold;
  opacity: 100%;
  margin-left: 12px;
  padding-top: 25px;
}

.content-date {
  color: #858585;
  font-size: 16px;
  font-weight: bold;
  font-family: Heebo, Black;
}

.content-info {
  font-family: Heebo, Light;
  font-size: 16px;
  font-weight: lighter;
}

.content-button {
  margin-top: auto;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  margin-left: -12px;
}

.info-button {
  display: inline-block;
  background-color: #E7886B;
  box-shadow: 0.5px 0.5px 2px #00000029;
  border-radius: 10px;
  opacity: 1;
  border: none;
  padding-right: 30px;
    padding-left: 30px;
    color: #FFFFFF;
}

.info-button:hover{
  color: #FFFFFF;
}