/* CSS for index.php */

div.intro {
  font-size: 120%;
  margin: 40px 0;
}

div.pageheader {
  max-width: 800px;
  margin: 20px auto 40px;
}

div.pageheader div.headertext {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  width: 50%;
  font-size: 100%;
}

div.pageheader div.headertext div.address {
  margin: 0 30px 100px;
  font-weight: bold;
  color: var(--accent);
}

div.pageheader div.headertext div.times {
  margin: 0 30px;
  font-size: 100%;
  color: var(--accent);
}

table.list.whatson { max-width: 100% }
table.list.whatson tr td {
  font-size: 90%;
  padding: 5px 0;
}

@media screen and (max-width: 700px) {
  div.intro {
    font-size: 110%;
  }

  div.pageheader div.headertext {
    font-size: 90%;
  }

  div.pageheader div.headertext div.address {
    font-size: 90%;
    margin: 0 10px 10px;
  }

  div.pageheader div.headertext div.times {
    margin: 0 10px;
  }
}

div.smallscreentimes
{
  display: none;
}

@media screen and (max-width: 500px)
{
  div.smallscreentimes
  {
    display: block;
    /* border-bottom: 1px solid var(--darkbg); */
    font-size: 90%;
    color: var(--accent);
    margin: 0 0 10px;
    padding: 0 0 10px 10px;
  }
}
