
nav a.selected { font-weight: bold; }

#slippymap {
  /*
  width: 100vw;
  */
  height: 90vh;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - header-height - nav-height - footer-height);
}

html {
  margin: 0 auto;
  padding-top: 0;
  max-width: 50em;
}

body {
  color: #000;
  background-color: #fff;
  margin: 0;
  margin-left: 1.5em;
  margin-right: 1.5em;
  font-family: sans;
  font-size: 1.25em;
}

header {
  color: #fff;
  background-color: #555;
}

footer {
  text-align: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.eventcard {
    display: flex;
    align-items: flex-start;
    /*
    border: 2px solid black;
    */
    border: 0px none;
    padding: 1em;
    margin: 0.5em;
    gap: 1.5em;
}

.eventcard a {
    text-decoration: none;
    color: black;
}

.eventcard-image {
    height: 5em;
    width: 8em;
    object-fit: cover;
    flex-shrink: 0;
}

.eventcard-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5em;
    flex: 1;
}

.eventcard-title {
    font-size: 1.5em;
    font-weight: bold;
}

.eventcard-datetime {
    font-size: 0.9em;
    color: #666;
}

.eventcard-address {
    font-size: 0.9em;
    color: #666;
}
