

.eventoCalendario {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;

  height: 150px;
  width: 800px;

  padding: 10px;
  margin: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: rgba(0, 255, 255, 0.192);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  box-shadow: 1px 5px 15px #1e0e3e;
}

.fechaEvento {

    margin: 20px;
    padding: 20px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 5px 15px #1e0e3e;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.lugarEvento {
    margin: 20px;
    padding: 20px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 5px 15px #1e0e3e;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.descripcionEvento {
    margin: 20px;
    padding: 20px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 5px 15px #1e0e3e;
    position: relative;
    overflow: hidden;
    background-color: #000;
}