@charset "UTF-8";
/* Autoprefixed 100822 */

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
   font-family: belarius-sans-wide, sans-serif;
}

body {
   background-color: #f7f9f9;
   max-width: 1366px;
   margin: 0 auto;
}

#mainContainer {
   display: grid;
   grid-template-areas:
      "head"
      "body"
      "foot";
   grid-template-rows: auto;
   row-gap: 1rem;
}

h1 {
   font-family: belarius-poster-wide, sans-serif;
   font-size: 1.8rem;
   font-weight: 400;
}

h2 {
   font-size: 1.5rem;
   font-weight: 600;
}

h3 {
   font-size: 1.2rem;
   font-weight: 400;
}

p {
   font-weight: 300;
}

#footer {
   grid-area: foot;
   margin: 1rem;
}

#footer a,
a:visited {
   text-decoration: none;
   color: #0a4044;
}

.contentClear {
   color: #0a4044;
}

.contentLight {
   color: #0a4044;
   background-color: #e4e9ea;
   margin: 0 1rem;
   padding: 3rem;
   font-size: 1.1rem;
   transition: margin 0.6s ease 0.4s, border-radius 0.6s ease 1.1s,
      padding 0.6s ease 1.1s, font-size 0.6s ease 1.1s;
}

details {
   transition: all 0.6s ease;
}

.cornerRad {
   border-radius: 0 0 1rem 1rem;
}

.contentDark {
   color: #e4e9ea;
   background-color: #0a4044;
}

#logo {
   width: 252px;
   margin: 0 auto 25px auto;
   align-content: center;
}

.copy {
   text-align: center;
   color: #0a4044;
}

.centreFlex {
   display: flex;
   align-items: center;
   justify-content: center;
}

.rightFlex {
   display: flex;
   align-items: center;
   justify-content: right;
}

.footnote {
   font-size: 0.8rem;
}

/* INVISIBLE? */
.footnote a,
.footnote a:hover {
   color: #f7f9f9;
}

@media only screen and (max-width: 1024px) {
   .contentLight {
      padding: 2.5rem;
   }
}

@media only screen and (max-width: 768px) {
   .contentLight {
      padding: 2rem;
   }
}

@media only screen and (max-width: 600px) {
   .contentLight {
      margin: 0;
      border-radius: 0;
      font-size: 1rem;
      pad: 1rem;
   }
}
