@import url("https://fonts.googleapis.com/css2?family=Bangers:wght@400&family=Nunito:wght@100;200;300;400;500;600;700;800&display=auto");
dev-resolution-indicator {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 50vw;
  transform: translateX(-50%);
  font: bold 13px tahoma;
  background: yellowgreen;
  color: black;
}
dev-resolution-indicator > span {
  display: none;
  padding: 4px 10px;
}
@media ( min-width: 1340px ) {
  dev-resolution-indicator span.lg {
    display: block;
  }
}
@media ( min-width: 992px ) and ( max-width: 1339px ) {
  dev-resolution-indicator span.md {
    display: block;
  }
}
@media ( min-width: 768px ) and ( max-width: 991px ) {
  dev-resolution-indicator span.sm {
    display: block;
  }
}
@media ( min-width: 540px ) and ( max-width: 767px ) {
  dev-resolution-indicator span.xs {
    display: block;
  }
}
@media ( min-width: 360px ) and ( max-width: 539px ) {
  dev-resolution-indicator span.xx {
    display: block;
  }
}
@media ( max-width: 359px ) {
  dev-resolution-indicator span.xt {
    display: block;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font: 15px "Nunito", Arial, sans-serif;
  padding: 0;
  margin: 0;
  color: silver;
}
main {
  min-height: 100vh;
}
.readmore {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 5px 20px;
  border: 1px solid rgba(0,0,0,0.66);
  border-radius: 50px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  user-select: none;
}
@media ( min-width: 768px ) and (max-height: 700px) {
  .readmore {
    display: none;
  }
}
@media ( max-width: 767px ) and (max-height: 570px) {
  .readmore {
    display: none;
  }
}
section.hero {
  background: #036;
  min-height: 100vh;
  padding-bottom: 30vh;
}
section.hero> div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12vh;
}
@media ( max-width: 767px ) {
  section.hero> div {
    padding-top: 13vh;
  }
}
section.hero> div> div {
  text-align: center;
}
section.hero> div> div> img {
  width: 240px;
}
@media ( max-width: 767px ) {
  section.hero> div> div> img {
    width: 150px;
  }
}
section.hero .teaser-text {
  color: white;
  font-weight: 200;
}
@media ( min-width: 768px ) {
  section.hero .teaser-text {
    font-size: 17px;
  }
}
@media ( max-width: 767px ) {
  section.hero .teaser-text {
    font-size: 13px;
  }
}
section.hero h1 {
  padding: 0px 6vw 0 6vw;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  font: 85px "Bangers", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: white;
  text-shadow: 4px 12px 0px rgba(0,0,0,0.36);
}
@media ( min-width: 768px ) {
  section.hero h1 {
    font-size: 85px;
    text-shadow: 4px 12px 0px rgba(0,0,0,0.36);
    margin-bottom: 13px;
  }
}
@media ( max-width: 767px ) {
  section.hero h1 {
    font-size: 44px;
    text-shadow: 3px 6px 0px rgba(0,0,0,0.36);
    margin-bottom: 3px;
  }
}
section.hero h1 small {
  font-size: inherit;
  color: #ffc000;
}
section.hero .links {
  margin-top: 9vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3vw;
  justify-items: center;
}
section.hero .links>a {
  font: 14px "Nunito", Arial, sans-serif;
  text-transform: uppercase;
  display: block;
  padding: 30px 0px 0px 0px;
  border-radius: 10px;
  width: 10vw;
  min-width: 140px;
  background: rgba(0,0,0,0.26);
  color: #ffd200;
  text-decoration: none;
}
section.hero .links>a> img {
  width: 48px;
  margin-bottom: 11px;
}
section.hero .links>a> label {
  cursor: pointer;
  margin-top: 20px;
  border-radius: 0 0 10px 10px;
  background: rgba(0,0,0,0.28);
  text-align: center;
  display: block;
  padding: 5px;
}
@media ( max-width: 767px ) {
  section.hero .links {
    grid-template-columns: 1fr;
    margin-top: 5vh;
  }
  section.hero .links>a {
    font-size: 12px;
    padding: 10px 30px;
    display: flex;
    min-width: 200px;
  }
  section.hero .links>a> img {
    width: 32px;
    margin: 0px;
  }
  section.hero .links>a>label {
    background: none;
    margin: 0;
    padding: 8px 0 0 20px;
  }
}
section.article {
  background: #ddd;
}
section.article h2 {
  margin: 50px 0 20px 0;
}
section.article>div {
  color: black;
  max-width: 900px;
  margin: auto;
  font: 16px "Nunito", Arial, sans-serif;
  font-weight: 400;
}
@media ( min-width: 768px ) {
  section.article>div {
    padding: 60px 50px;
    text-align: justify;
  }
}
@media ( max-width: 767px ) {
  section.article>div {
    padding: 60px 11vw;
  }
}
section.article>div b {
  font-weight: 800;
  color: #800000;
}
section.article code {
  background: #bbb;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 1px 4px;
}
section.article .collapsible> h2 {
  user-select: none;
  cursor: pointer;
}
section.article .collapsible> h2:before {
  content: '\25b2';
  display: inline-block;
  width: 30px;
  margin-left: -30px;
  position: absolute;
  font-size: 16px;
  color: rgba(0,0,0,0.29);
  padding-top: 5px;
}
section.article .collapsible.collapsed > h2:before {
  content: '\25bc';
}
section.article .collapsible> div {
  transition: all 200ms ease;
  transform-origin: center top;
}
section.article .collapsible.collapsed > div {
  transform: scaleY(0);
  height: 0px;
  margin-bottom: -60px;
  opacity: 0;
}
section.donation {
  padding: 30vh 0;
  color: white;
  background: #036;
}
section.donation .text {
  font: 16px "Nunito", Arial, sans-serif;
  max-width: 500px;
  padding: 0 30px;
  margin: auto;
  text-align: center;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
}
section.donation .text b {
  font-size: 24px;
  font-weight: 800;
  color: white;
}
section.donation .payments {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
section.donation .payments a {
  padding: 10px;
  background: white;
  display: block;
  border-radius: 14px;
}
section.donation .payments a img {
  vertical-align: bottom;
}
@media ( min-width: 768px ) {
  section.donation .payments a img {
    width: 160px;
  }
}
@media ( max-width: 767px ) {
  section.donation .payments a img {
    width: 100px;
  }
}
@media ( max-width: 359px ) {
  section.donation .payments a img {
    width: 70px;
  }
}
.col3 {
  display: grid;
  grid-gap: 20px;
}
@media ( min-width: 768px ) {
  .col3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media ( max-width: 767px ) {
  .col3 {
    grid-template-columns: 1fr 1fr;
  }
}
.col3.app-showcase img {
  width: 100%;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(0,0,0,0.34);
  box-shadow: 0px 3px 10px rgba(0,0,0,0.25);
  cursor: pointer;
}
@media ( min-width: 768px ) {
  .col3.app-showcase img {
    height: 160px;
  }
}
@media ( max-width: 767px ) {
  .col3.app-showcase img {
    height: 20vw;
  }
}
