body {
  display: flex;
  align-items: center;
  flex: 1 0 auto;
  flex-flow: column;
  padding: 0;
  margin: 0;

  background: url(images/css_right.png) repeat-y, url(images/css_left.png) repeat-y, linear-gradient(180deg, #35bfff 50%,  #0c86e9 100%), #35bfff;
  background-attachment: fixed;
  background-position: left top, right top;

  font-family: Verdana,Arial,Helvetica,sans-serif;
}
.card {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;

  flex: 0 1 auto;
  flex-flow: column nowrap;
  width: 90%;
  max-width: 950px;
  box-sizing: border-box;
  padding: 0 50px;
  margin-bottom: 35px;
  border: solid 5px #C6C6C6;

  border-radius: 5px;
  background: #EEEEEE;
}
.card:first-of-type {
  margin-top: 50px;
}
.cardContent {
  margin-bottom: 16px;
  text-align: center;
}
.splitCard {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  padding: 0;
}
.cardLeft, .cardRight {
  width: 50%;
  padding: 15px;
  text-align: center;
}
.cardLeft h2, .cardRight h2 {
  margin-top: 0;
  text-align: center;
}
.divider {
  width: 1px;
  border-left: solid 3px #C6C6C6;
}
.downloadLinks {
  margin: 0 auto;
  text-align: center;
}
h2 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 32px;
}
h3 {
  margin-top: 36px;
  margin-bottom: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
}
img {
  max-width: 100%;
}
.standaloneImage {
  max-width: 90%;
  margin-bottom: 25px;
  border-radius: 5px;
  box-shadow: 0 0 20px -2px black;
}
.standaloneImage img, .standaloneImage video {
  display: block;
  max-width: 100%;
  border-radius: 5px;
}

.logoBox {
  position: relative;
  width: 100%;
  margin: 16px auto;
}

.logoBox img, .logoBox video {
  max-width: 100%;
}

span.mc {
  position: absolute;
  right: 0px;
  bottom: 42px;
  color: #ff9000;
  text-shadow: 2px 2px 2px black;
  transform: rotate(-20deg);
  font-family: "Comic Sans MS", monospace;
  font-size: 24px;
  font-weight: bold;
}

#buttons {
  display: flex;
  flex-flow: column nowrap;
}

.anchorButton {
  display: inline-block;
  width: 260px;
  max-width: 60%;
  padding: 10px 50px;
  margin-bottom: 10px;
  border-radius: 3px;
  color: white;
  /* border: solid #00000040 5px; */
  background-color: #3bc43d;
  font-weight: bold;
  text-decoration: none;
}
.anchorButton:hover {
  background-color: #2ca52e;
}

.anchorButton.faq {
  background-color: #af2591;
}
.anchorButton.faq:hover {
  background-color: #971e7d;
} 
.anchorButton.twitter {
  background-color: #1da1f2;
}
.anchorButton.twitter:hover {
  background-color: #1889cf;
}

.anchorButton.bugreport {
  background-color: #ff3b22;
}
.anchorButton.bugreport:hover {
  background-color: #e4331c;
}
.anchorButton.disabled {
  background-color: grey;
}

.log {
  align-self: center;
  width: 700px;
  padding: 1px;
  margin: 0 auto;
  border: 1px dashed #808080;
  text-align: center;
}
.logButton {
    text-transform: capitalize;
}
.logButton::before {
  content: "Hide ";
}
.logHidden .logButton::before {
  content: "Show ";
}
.log .logContent{
  line-height: 1.35;
  padding: 15px;
  text-align: center;
}
.logContent ul {
  margin: 0 auto;
  text-align: left;
}
.logHidden .logContent {
    display: none;
}


.banner {
    position: fixed;
    z-index: 5;
    bottom: 20px;
    padding: .5em 1em;
    margin: 0 auto;
    border: 2px solid yellow;
    color: white;
    background: black;
    box-shadow: 0 0 0 4px #ff9000;
    text-align: center;
    vertical-align: middle;
}

.faq dl dd {
  text-align: left;
}

.faq dl dd, .faq dl div, .faq dl img {
  margin-bottom: 1em;
}

.faq dl dd p {
  margin-top: 0;
}

.faq dl dt {
  text-align: left;
  font-weight: bold;
}


.quote--container {
  max-width: 18em;
  padding-bottom: 0.5rem;
  margin: 0 auto;
  border-bottom: 2px dotted #C6D1BF;
  letter-spacing: 0.03em;
  font-family: "EB Garamond";
  font-size: 32px;
}
.quote {
  position: relative;
  height: 100%;
  line-height: 1.4rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  text-rendering: optimizeLegibility;
}
.quote:before {
  /* position: relative;
  left: -0.7em;  */
  content: "“";
}
.quote:after {
  margin-right: -1rem;
  content: "”";
}
.quote--author {
  text-align: right;
  font-family: "Open Sans Condensed";
  font-size: 0.8rem;
  font-weight: 300;
}