@charset "UTF-8";
@media screen and (max-width: 30em) {
  .flex-20-s {
    flex: 0 0 20%; } }

@media screen and (min-width: 30em) and (max-width: 60em) {
  .max-width-half-m {
    max-width: 50%; } }

@media screen and (min-width: 60em) {
  .max-width-quarter-l {
    max-width: 25%; }
  .mw-50-l {
    max-width: 50%; }
  .mw-33-l {
    max-width: 33%; }
  .mw-67-l {
    max-width: 67%; } }

html {
  font-size: 62.5%; }

@media screen and (min-width: 30em) {
  html {
    font-size: 75%; } }

body {
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  background-color: white;
  font-size: 1.5rem;
  line-height: 1.6;
  /* Ensure the footer is always at the bottom of the screen */
  min-height: 100vh;
  display: flex;
  flex-direction: column; }
  body > #main-content {
    flex: 1; }

#ferris img {
  display: block;
  margin: 0 auto; }

code {
  overflow: auto; }

code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
  overflow: auto; }

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }

.button,
button {
  display: inline-block;
  width: 100%;
  min-height: 38px;
  padding: 8px 30px;
  text-align: center;
  font-weight: 600;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid;
  cursor: pointer;
  box-sizing: border-box; }
  .button:hover, .button:focus,
  button:hover,
  button:focus {
    outline: 0; }

p {
  margin-top: 0;
  margin-bottom: 2.5rem; }

.button.button-secondary {
  font-size: 0.8em; }

code.code-header {
  background-color: rgba(127, 127, 127, 0.25);
  font-size: 2rem;
  display: inline-block;
  margin: 0 0 3px 0; }

header h1, section h2 {
  font-family: "Alfa Slab One", serif;
  z-index: 999999;
  position: relative;
  letter-spacing: 1px;
  font-weight: 300; }

header h1 {
  font-size: 8rem;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.2;
  font-weight: 300; }

header h2 {
  font-size: 4.2rem;
  line-height: 1.25;
  font-weight: 300; }

section h3 {
  margin-top: 0;
  line-height: 1.3; }

section p, code {
  line-height: 1.6; }

header .button.button-download {
  color: black;
  background-color: #FFD45E;
  border-color: #FFD45E;
  width: 100%;
  padding: 20px;
  height: auto;
  font-size: 2.25rem;
  margin-top: 20px; }
  header .button.button-download:hover, header .button.button-download:focus {
    border-color: black; }

h2.subtitle {
  margin: 0;
  font-family: "Fira Sans", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #454C52; }

section {
  padding: 30px 0 60px 0; }
  section header {
    padding: 30px 0 60px 0;
    display: inline-block; }
    section header h2 {
      margin: 0;
      padding: 0;
      letter-spacing: 1px;
      font-size: 4.2rem;
      line-height: 1.25; }
  section h3 {
    line-height: 1.3; }
  section p {
    margin-top: 0;
    margin-bottom: 30px; }

ul {
  list-style: circle;
  padding-left: 1.5em; }

ol {
  list-style: decimal;
  padding-left: 1.5em; }

section .container {
  padding-top: 20px; }

.nav a {
  color: #454C52; }

div.brand {
  color: black;
  font-family: "Alfa Slab One", serif;
  font-size: 3rem;
  text-decoration: none;
  margin-top: 3px; }
  div.brand img {
    width: 80px;
    margin-top: -3px; }
  div.brand span {
    display: inline-block;
    margin-left: -1rem; }

a.brand {
  color: black;
  text-decoration: none; }

.domain-icon {
  min-height: 100px;
  text-align: center;
  margin-bottom: -10px; }
  .domain-icon img {
    max-width: 50%;
    max-height: 50%;
    padding-bottom: 20px; }

.red {
  background-color: #C14566;
  color: white; }
  .red .highlight {
    background-color: #403D58; }
  .red a {
    color: white;
    text-decoration: underline; }
  .red .button.button-secondary {
    background-color: #403D58;
    border-color: #403D58;
    color: white;
    text-decoration: none; }
    .red .button.button-secondary:hover, .red .button.button-secondary:focus {
      border-color: white; }
  .red code {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #E1E1E1;
    border-radius: 4px; }

.green {
  background-color: #398277;
  color: white; }
  .green .highlight {
    background-color: #403D58; }
  .green a {
    color: white;
    text-decoration: underline; }
  .green .button.button-secondary {
    background-color: #403D58;
    border-color: #403D58;
    color: white;
    text-decoration: none; }
    .green .button.button-secondary:hover, .green .button.button-secondary:focus {
      border-color: white; }
  .green code {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #E1E1E1;
    border-radius: 4px; }

.white {
  color: black; }
  .white .highlight {
    background-color: #FFD45E; }
  .white a {
    color: #454C52;
    text-decoration: underline; }
  .white .button.button-secondary {
    background-color: #FFD45E;
    border-color: #FFD45E;
    color: #454C52;
    text-decoration: none; }
    .white .button.button-secondary:hover, .white .button.button-secondary:focus {
      border-color: #454C52; }
  .white code {
    color: black;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 4px; }

.purple {
  background-color: #403D58;
  color: white; }
  .purple .highlight {
    background-color: #C14566; }
  .purple a {
    color: white;
    text-decoration: underline; }
  .purple .button.button-secondary {
    background-color: #C14566;
    border-color: #C14566;
    color: white;
    text-decoration: none; }
    .purple .button.button-secondary:hover, .purple .button.button-secondary:focus {
      border-color: white; }
  .purple code {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #E1E1E1;
    border-radius: 4px; }

h3 {
  font-weight: 800;
  font-size: 1.5em;
  letter-spacing: normal; }

.get-involved .code {
  padding-top: 20px; }

.get-involved .media {
  padding-bottom: 20px;
  border-bottom: 1px dotted white; }

header h1 {
  letter-spacing: 1px; }

.highlight {
  height: 24px;
  position: relative;
  top: -24px;
  left: -10px;
  width: 120%;
  max-width: 90vw;
  line-height: 1.6; }

footer {
  padding: 30px 0;
  background-color: black;
  color: white; }
  footer p {
    margin: 0; }
  footer ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0; }
  footer li {
    margin-bottom: 1rem; }
  footer a {
    color: #FFD45E;
    text-decoration: none; }
    footer a:hover {
      color: #FFD45E;
      text-decoration: underline; }

footer h4 {
  font-size: 1.2em;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 2rem; }

footer img {
  width: 40px;
  padding: 0 10px; }

footer .attribution {
  text-align: center;
  padding-top: 30px; }

footer .languages {
  color: #454C52; }

blockquote {
  font-size: 1.5em;
  line-height: 1.2em;
  position: relative;
  border-bottom: 1px dotted #454C52;
  padding: 5px;
  color: #454C52; }

blockquote::before {
  content: '“';
  color: #454C52;
  font-size: 3em;
  position: absolute;
  left: -50px;
  top: 20px; }

.production .four {
  text-align: center; }

#production .attribution {
  text-align: right; }

.production .button.button-secondary {
  margin-top: 30px; }

.testimonial img {
  padding: 10px; }

.production .attribution {
  font-size: 1.5em;
  text-align: right; }

#whitepapers .top-border {
  padding-top: 20px;
  border-top: 1px white dotted; }

#prod-highlights img {
  width: 100%; }

#users .row .columns {
  position: relative;
  height: 200px; }

#users img {
  max-height: 200px;
  max-width: 100px;
  width: auto;
  height: auto;
  margin: auto;
  display: block; }

.user-logo {
  min-height: 100px; }

.user-container {
  min-height: 300px; }

#share-your-experience h3, #production-domains h3 {
  padding-bottom: 20px;
  text-align: center; }

#learn-more .columns:first-of-type {
  border-right: 1px black dotted; }

#learn-begin p:first-of-type {
  padding-bottom: 20px;
  border-bottom: 1px white dotted; }

#learn-use img {
  width: 30%; }

#learn-use .domain {
  text-align: center; }

#security-learn-community-key pre {
  color: black; }

#rust-trademarks img {
  vertical-align: middle; }

.tools-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px; }

.tools-row #tools-write-ide-prose {
  margin-right: 10px; }

.tools-row #tools-write-ide-img {
  flex: none;
  object-fit: none; }

#embedded-project-gallery iframe {
  width: 100%;
  height: 250px; }

#embedded-project-gallery .button.button-secondary {
  color: #FFD45E; }

#embedded-users img {
  width: 80%;
  background-color: white;
  padding: 20px; }

#cli-pitch .domain-icon,
#cli-features .domain-icon {
  display: block;
  padding-bottom: 0;
  min-width: 100px; }
  #cli-pitch .domain-icon img,
  #cli-features .domain-icon img {
    max-width: 90px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1em;
    opacity: 0.9; }

#cli-features h3 code {
  background-color: transparent;
  border: none;
  word-break: break-word;
  white-space: pre-line; }

#cli-use-it pre {
  color: #fff; }

#ferris-error {
  width: 80%; }

.hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.flex-grow {
  flex-grow: 1; }

.flex.vertical {
  flex-direction: column; }

.flex.space-around {
  justify-content: space-around; }

.flex-no-shrink {
  flex-shrink: 0; }

.install-details {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  padding: .2rem .5rem;
  margin: 0 .2rem;
  border-radius: 4px; }

#language-values span {
  font-weight: 600; }

@media screen and (max-width: 550px) {
  header h1 {
    font-size: 4rem; }
  header .highlight {
    height: 20px;
    top: -20px; }
  header h2.subtitle {
    font-size: 2.5rem;
    line-height: 1.1; }
  header .button.button-primary.button-download {
    padding: 5px;
    font-size: 1.5em;
    margin-top: 20px; }
  section header {
    padding-top: 10px;
    padding-bottom: 30px; }
    section header h2 {
      font-size: 3rem; } }

.team {
  text-align: center;
  padding: 20px;
  margin: 20px;
  position: relative;
  border: 1px solid white; }
  .team .button {
    position: absolute;
    bottom: 5px;
    width: 80%; }
  .team h4 {
    font-size: 1.5em;
    font-weight: 600; }

.group-member {
  float: left; }
  .group-member .name {
    display: block;
    font-weight: 600;
    text-align: center;
    padding: 0;
    margin: 0; }

.subteam {
  margin: 20px 0;
  width: 100%;
  content: "";
  display: table;
  clear: both;
  border: 1px white solid;
  padding: 20px; }

.testimonial {
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 545px) {
    .testimonial {
      display: block; } }

.flash {
  width: 100%;
  font-size: 1em;
  padding: 0;
  margin: 0; }
  .flash h3 {
    text-align: center; }

.download-link {
  color: #1EAEDB; }
