body {
  background-color: white;
  color: #1e324d;
}

#content-desktop {
  display: block;
}

#content-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  #content-desktop {
    display: none;
  }

  #content-mobile {
    display: block;
  }
}

.btn.btn-light {
  cursor: pointer;
  font-size: 1rem;
  height: 3rem;
  transition: 0s;
  background-color: #1e324d;
  color: white;
  border-radius: 5px;
  border: 2px solid #1e324d;
}

.btn.btn-light:hover {
  background-color: #5a7190;
  border: 2px solid #5a7190;
}

.btn.btn-light:active {
  color: white;
}

.btn.btn-light.selected {
  background-color: white;
  color: #1e324d;
  cursor: default;
}

.btn.btn-light.selected:hover {
  background-color: white;
  border: 2px solid #1e324d;
}

.btn.btn-light.selected:active {
  color: #1e324d;
}

.divtext {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

input {
  background-color: white;
  border: 1px solid #5a7190;
  color: #1e324d;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  height: 2.5rem;
}

input:focus {
  outline: none;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

.explorer-container {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
}

.little-button {
  height: 2.5rem;
  font-weight: bold;
}

.container-outer {
  width: 100%;
  min-height: calc(100vh - 15rem);
  display: flex;
  justify-content: center;
}

.container-inner {
  text-align: center;
}

.welcome-top {
  margin-top: 1.5rem;
  font-size: 2rem;
}

.welcome {
  font-size: 1.5rem;
}

.signup {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: white;
}

.title-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

a {
  color: #1e324d;
  text-decoration: underline;
}

.btn.btn-light.yes {
  color: #91C8A4;
  border-color: #91C8A4;
  font-weight: bold;
  background-color: #5a7190;
}

.footer {
  margin-top: 1rem;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
}

.footer-inner {
  text-align: center;
}

.section-border {
  margin-top: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-bottom: 1px solid #5a7190;
}

.unit {
  color: #1e324d;
  font-weight: normal;
}

.content-container {
  margin-top: 1rem;
  text-align: left;
  padding-left: 3rem;
  padding-right: 3rem;
}

.section-heading {
  position: relative;
  z-index: -1;
  font-size: 2rem;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
}

.subsection-heading {
  color: white;
  font-size: 2rem;
}

.subcontent-container .help-text {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.subcontent-container .subsection-content {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.subcontent-container .download-container {
  width: 12.5rem;
  height: 12.5rem;
  border: 1px solid #5a7190;
  display: inline-block;
  margin-top: 1rem;
  margin-right: 3rem;
  vertical-align: top;
}

.subcontent-container .download-container .intermediate {
  width: 12.5rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcontent-container .download-container .download-sub-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.subcontent-container .download-container .download-sub-container .operating-system {
  cursor: default;
  font-size: 2.5rem;
  text-align: center;
}

.subcontent-container .download-container .download-sub-container .architecture-container {
  text-align: center;
  font-size: 1.5rem;
}

.subcontent-container .download-container .download-sub-container .architecture-container .architecture {
  cursor: pointer;
}

a.btn {
  color: white;
  font-weight: bold;
}

.big-button {
  width: 21rem;
}

/*# sourceMappingURL=styles.css.map*/