body {
  background-color: #f3f3f3;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100vH;
}

.container {
  display: grid; 
  height: 100%; 
  align-content: center; 
  justify-content: space-around; 
  background-color: #fff;
}

.event {
  display: block;
  width: 350px;
  height: 500px;
  background-color: #fff;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Horizontal offset, vertical offset, blur radius, shadow color */
  padding: 0px; /* Optional: Add some padding inside the div */
  border-radius: 10px; /* Rounded corners */
  display: flex;
  flex-direction: column;
  align-items: start;
  overflow: hidden;

  text-decoration: none;
  color: black;
}

.event:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.event-img {
  height: 60%;
  width: 100%;
  object-fit: cover;
}

.event-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px;
}

.event-data {
  font-size: 1rem;
  font-weight: 400;
  margin: 12px;
  margin-top: 4px;
}

.event-row {
  display: flex;
}

@media (max-width: 768px) {
  
  .container {
      height: initial;
  }

  .event-row {
      flex-direction: column;
  }

}
