* {
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background: black;
  overflow-x: hidden;
}

#grid-wrapper {
  height: 0;
  min-height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 0.3fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

header{
  grid-area: 1 / 2 / 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#header-image{
  width: 46.875rem;
  align-self: center;
}

main {
  grid-area: 2 / 2 / 3 / 3;
}

table, th, td, tr, thead, tbody {
  border: 1px solid white;
  border-collapse: collapse;
  padding: 5px 5px 5px 5px;
}

p, .text {
  color: white;
  font-weight: 300;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 0.813rem;
  font-family: "Verdana";
  font-style: normal;
}

.bold {
  font-weight: 800;
}

.when-where {
  width: 25%;
  text-align: center;
}

.tr-day {
  line-height: 1.5;
}

.what-how {
  padding: 10px 10px 10px 10px;
}

@media screen and (max-width:640px) {
  #grid-wrapper {
    grid-template-columns: 1fr;
  }

  #header-image {
    width: 23rem;
  }
}