body {
  display: flex;
  flex-direction: column;
  background-color: lavender;
  margin: 0px;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 8px;
  gap: 8px;
}

h1 {
  background-color: lightgreen;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  margin: 0;
}
footer {
  background-color: lightgreen;
  border-radius: 16px;
  margin: 0;
  padding: 16px;
}

.body {
  flex: 1;
  display: flex;
  gap: 8px;
}
.sidebar {
  background-color: lightgreen;
  flex-shrink: 0;
  border-radius: 16pt;
  margin: 0;
  padding: 16px;
}
.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.content {
  background-color: lightblue;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  border-radius: 16pt;
  margin: 0;
  padding: 16px;
}

.card {
  border: 1px solid grey;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.1);
  margin: 4px;
  border-radius: 8px;
  padding: 4px;
  width: 250px;
  height: 300px;
}
.event-title {
  font-size: 32px;
  text-align: center;
  background-color: black;
  color: white;
}
.event-date {
  text-align: center;
  font-size: 20px;
}
.event-link {
  display: flex;
  justify-content: space-around;
  background-color: black;
  color: lightblue;
}
.event-link a {
  text-decoration: none;
  color: lightblue;
}