body {
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
    background: #FFDDDD;
    margin-top: 50px;
}

/************ structure *********************/

.big-container {
  margin: 20px 5%;
}

.grid-container {
  display: grid;
  column-gap: 5%;
  grid-template-areas: 
            "logo menu"
            "content content"
            "footer footer";
  grid-template-columns: 30% 65%;
}

#logo-container {
  grid-area: logo;
  padding-top: 1.75em;
}
#logo-container a {
  display: block;
  top: 5em;
}
#logo-container img {
  width: 100%;
}

#menu-container {
  grid-area: menu;
  padding-top: 2em;
}

#menu-sidebar {
  display: none;
  width: 50%;
  position: absolute;
  top: 4em;
  left: 100%;
  z-index: 1000;
  background: #FFDDDD;
  padding: 10px;
  transition: display 0s, left 2s;
}
#menu-button-open {
  margin-top: 2em;
  margin-right: 1em;
  display: block;
  text-align: right;
}
#menu-button-close {
  font-size: 2em;
}

#content-container {
  grid-area: content;
}

#footer-container {
  grid-area: footer;
}

.u-full-width {
  width: 100%;
}
.u-max-full-width {
  max-width: 100%;
}

/************ links *********************/

a {
  color: #000;
}
a:hover {
  color: #666;
}

/************ text styles *********************/

p {
  font-size: 1em;
  line-height: 1.25;
}

#intro p {
  font-size: 2em;
  line-height: 1.25;
}

#content-container h1,
.block-type-heading h2 {
  font-size: 2em;
  line-height: 1.25;
  margin-top: 1.5em;
}

#social p {
  font-size: 1.25em;
  line-height: 1.25;
}

p.dateline {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  font-size: 0.9em;
  line-height: 2em;
}

input#mailinglist-email {
  border: 1px solid 000;
  background-color: #FFEEEE;
  max-width: 90%;
}
input#mailinglist-submit {
  margin-top: 5px;
  border: 1px solid 000;
  background-color: #FFCCCC;
  padding: 3px 5px;
}
.tag {
  text-transform: capitalize;
}

/************ menus *********************/

#menu-button-open a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  font-size: 1.5em;
}
#menu-button-open .icon {
  font-size: 1.5em;
}
#menu-button-open .icon:after {
  margin-left: 5px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80' width='20' height='20'%3E%3Crect y='5' width='100' height='15'%3E%3C/rect%3E%3Crect y='35' width='100' height='15'%3E%3C/rect%3E%3Crect y='65' width='100' height='15'%3E%3C/rect%3E%3C/svg%3E");
}
#menu-button-close a {
  text-decoration: none;
  color: #000;
}

#menu-list ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid #000;
}
#menu-list ul li {
  padding: 0;
  border-bottom: 1px solid;
  font-size: 1.25em;
}
#menu-list  ul li a {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
  padding: 5px;
  display: block;
  width: 100%;
  text-decoration: none;
}
#menu-list ul li a:hover {
  color: #fff;
  background-color: #000;
}

#menu-list ul li a.language {
  background-color: #000;
  color: #fff;
}

/************ splash blocks *********************/

#underconstruction {
  position: absolute;
  top: 0;
  left; 0;
  z-index: 99999;
  width: 100%;
  color: #000;
  background-color: #ffffcc;
  text-align: center;
}
#underconstruction p {
  font-size: 0.8em;
  line-height: 2;
  margin: 0;
  padding: 0;
}

.frontpage-block {
    background-color: #FFCCCC;
    background-size: cover;
    background-position: center;
    padding: 200px 25px 25px 25px;
    margin-top: 50px;
}

.frontpage-block h3 {
  font-size: 2em;
  letter-spacing: 0.01em;
  font-weight: bold;
  color: #fff;
}

.frontpage-block p {
  color: #000;
  background: #FFDDDD;
  padding: 5px;
}

.activities-block {
    background-color: #FFCCCC;
    background-size: cover;
    background-position: center;
    padding: 25px;
    margin-top: 50px;
}

.activities-block h3 {
  font-size: 2 em;
  letter-spacing: 0.01em;
  font-weight: normal;
  margin-top: 200px;
  color: #000;
  background: #FFDDDD;
  padding: 5px;
}

.activities-block a {
  text-decoration: none;
}

.block-type-image {
  margin-bottom: 2.5rem;
}

/************ footer *********************/

#footer-container {
  margin-top: 50px;
  margin-bottom: 100px;
  text-align: left;
  color: #888;
  font-size: 1em;
  }

/************ media styles *********************/

@media (min-width: 550px) {
  .grid-container {
    grid-template-areas: 
            "logo content menu"
            "logo footer menu";
    grid-template-columns: 10% 56% 20%;
    column-gap: 7%;
  }

  #menu-container { padding:0; }
  #menu-sidebar { 
    display: block; 
    top: 3em; 
    left: 0; 
    position: relative; 
    width: 100%; 
    padding: 0; 
    }
  #menu-button-open { display: none; }
  #menu-button-close { display: none; }
  
  #logo-container a { position: sticky; }
  #intro p { font-size: 3em; }
  p { font-size: 1.5em;  }
  .block h3 { font-size: 4em; }
}