@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Asap:400,400i,600,600i&display=swap");
body {
  font: 120% Asap, sans-serif;
  line-height: 1.5;
  background: #fff;
  color: #000;
  margin: 0; 
  padding: 0;
  text-align: left; 
  box-sizing: border-box;
}
#container { 
  max-width: 1240px;
  background: #fff;
  margin: 0 auto;
  padding: 1rem;
} 
header>div {
  float: right;
  display: flex;
}
header>img {
  max-width: 60%;
  height: auto;
}
#language_switch, #menutoggle {
  color: #FFF;
  font-weight: 600;
  background-color: #e74898;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  height: 2rem;
  margin: 0;
  border: none;
}
#menutoggle {
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin-left: 1rem;
  background-image: url(/img/bars.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
#menutoggle.active {
  background-image: url(/img/cross.png);
}
#sitenav {
  display: none;
}
#sitenav.open {
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  color: #310c58;
}
#content a {
  color: #e74898;
}
#sitenav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #ebebeb;
}
#sitenav a {
  display: block;
  color: #310c58;
  padding: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #FFF;
}
#sitenav a.active {
  background: #989494;
  color: white;
}
a.join {
  display: block;
  float: right;
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-color: #435;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin: 0 0 1rem 1rem;
}
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
th, td {
  border: 1px solid #e74898;
  padding: 0.5rem;
}
@media screen and (min-width: 800px) {
  h1:first-of-type {
    margin-top: 0;
  }
  #menutoggle {
    display: none;
  }
  #sitenav {
    display: block;
  }
  header {
    grid-area: header;
  }
  #sitenav {
    grid-area: sidebar;
  }
  #content {
    grid-area: main;
  }
  footer {
    grid-area: footer;
  }
  #container {
    display: grid;
    grid-template-columns: 240px auto;
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-areas: 
      "header header"
      "sidebar main"
      "footer footer";
  }
}
@media screen and (min-width: 1024px) {
  .centrecol {
    grid-area: centrecol;
  }
  .rightside {
    grid-area: rightside;
  }
  .twocol {
    display: grid;
    grid-template-columns: auto 240px;
    grid-column-gap: 2rem;
    grid-template-rows: auto;
    grid-template-areas: 
      "centrecol rightside"
  }
}
