/**
 * Styles for the home page, contact page, and faq page
 */

section {
  padding: 32px 20px 32px 20px;
}

/* Intro section*/
#intro {
  background-color: #396cc2;
  color: #ffffff;
}

#intro-container {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
}

#intro-text {
  flex-grow: 1;
}

#intro-logo {
  height: 150px;
  margin: 0 auto;
}

#summary {
  background-color: #f2f2f2;
}

#screenshots {
  margin: 30px auto 20px auto;
  text-align: center;
}

.screenshot {
  width: 500px;
  border: 1px solid #bababa;
}

@media all and (max-width: 450px) {
  .screenshot {
    width: 300px;
    margin-bottom: 10px;
  }
}

/* Download section */
#download {
  background-color: #5b904e;
  color: #ffffff;
}

#download-buttons {
  display: flex;
  margin-bottom: 16px;
}

.download-btn {
  margin-right: 10px;
}

#download-github {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 14pt;
  color: #333;
}

#warning {
  background: #fff5ab;
  color: #383838;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #e8b90c;
  margin-top: 20px;
}

#warning-title {
  color: red;
  font-weight: bold;
  font-family: 'RobotoMedium';
}

#warning-risk {
  font-size: 14pt;
  font-family: 'RobotoMedium';
}

/* Acknowledgments/footer section */
#acknowledgments {

}

.footer-logo {
  margin: 10px;
}

/* FAQ sections */
.about-list > li {
  font-size: 12pt;
}

.alt-color-1 {
  background-color: #ffffff;
}

.alt-color-2 {
  background-color: #f2f2f2;
}

/* Contact page */
.contact-info {
  display: inline-block;
  font-size: 14pt;
}

/* Documentation page */
.alt-color-3 {
  background-color: #ffaa00;
}

.mono {
  font-size: 14pt;
  font-family: 'CutiveMono';
}

.mono-small {
  font-size: 12pt;
  font-family: 'CutiveMono';
}

.hangingindent {
  padding-left: 22px ;
  text-indent: -22px ;
}
