/* Base Reset */



body {
  min-height: 100vh;
  margin: 0;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.4;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Header */
header {
  background-color: white;
  width: 100%;
  position: fixed;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

ul {
  margin: 0;
  padding-right: 25px;
  align-self: end;
}

li {
  font-size: 1.2rem;
  display: inline-block;
  text-transform: uppercase;
  padding-left: 20px;
  letter-spacing: 0.1rem;
}

a, a:hover {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.anna_pic {
  max-width: 100%;
}

img.logo {
  width: 235px;
  margin-left: 25px;
  display: block;
}

.nav {
  text-align: right;
}

/* Page Section */
main {
  max-width: 1200px;
  margin: 10px auto;
}

/*h1 {
  text-align: left;
  padding-left: 50px
}*/

h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}

h2#information {
  padding-top: 40px;
}

h3 {
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 1.5rem;
  margin-bottom: 0px;
  padding-bottom: 15px;
  padding-top: 15px;
  border-top: 2px solid #000000;

}

/* Grid List */
.grid-event {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 2fr; 
}

/* Each event is one grid row */
.item {
  margin: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  border-top: 1px solid #000
  /*display: contents;  lets children inhabit the grid cells */
}

.date, .time {
  text-align: center;
}

/* Column styles */
.date {
  font-weight: 500;
}

.title {
  font-weight: 500;
  }


.link a {
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
}

.link a:hover {
  text-decoration: underline;
}


.text {
  max-width: 800px;
  text-align: center;
  padding-bottom: 30px;
}

.site-footer {
  font-size: 0.9rem;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  text-align: right;
}




/* Responsive: stack columns on mobile */
@media (max-width: 800px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    text-align: center;
    padding-top: 30px;
  }

  img.logo {
    margin: 0 auto;
  }

  img.anna_pic {
    padding-top: 140px;
  }

  li {
    padding-left: 10px;
    padding-right: 10px;
  }

  .event > * {
    margin-bottom: 6px;
  }

  .event {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  header {
  grid-template-columns: 1fr;
  }

  .text {
  padding-left: 1.5em;
  padding-right: 1.5em;
  }
}

/* Footer 
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #777;
  background: #fff;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}*/
