.top-nav {
  border-bottom: #90caf9 1px solid;
  background-color: #e3f2fd;
  padding: 0 8px;
}
.top-nav > div {
  display: flex;
  height: 48px;
  justify-content: space-between;
  align-items: center;
}
.top-nav .title {
  font-size: 20px;
  font-weight: 700;
  color: #0d47a1;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.top-nav .title img {
  height: 32px;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .top-nav nav {
    display: none;
  }
}
.top-nav nav a {
  text-decoration: none;
  padding: 0 16px;
  font-size: 0.75rem;
  color: #0d47a1;
}
.top-nav nav a.active {
  font-weight: 600;
}
.top-nav .menu .btn {
  margin-left: 8px;
}
@media (max-width: 700px) {
  .top-nav .menu .btn {
    margin-left: 0;
  }
}
.top-nav .menu .btn:first-of-type {
  margin-left: 0;
}

body.page-login {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.page-login main {
  flex: 1;
}
body.page-login footer {
  border-top: #90caf9 1px solid;
  background-color: #e3f2fd;
  padding: 48px;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  color: inherit;
  margin: 0;
  padding: 0;
}

.content-max-width {
  padding: 0 3%;
}

@media (min-width: 700px) {
  .content-max-width {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
  }
  .content-max-width.l {
    max-width: 1100px;
  }
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

ul {
  margin-left: 24px;
}

#root,
#__next {
  isolation: isolate;
}

.hero {
  min-height: 500px;
  height: 70dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  font-size: 3rem;
  text-align: center;
  line-height: 3.5rem;
  margin-bottom: 8px;
}
.hero h1 .highlight {
  color: #1565c0;
}
.hero p {
  text-align: center;
  color: #616161;
}
@media (max-width: 700px) {
  .hero p {
    padding: 0 3%;
  }
}
.hero .text {
  margin-bottom: 20px;
}
.hero .btn {
  font-size: 1rem;
}

.btn {
  display: inline-block;
  border: 1px solid #616161;
  padding: 8px 16px;
  background-color: transparent;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover {
  opacity: 0.7;
}
.btn:active {
  opacity: 0.5;
}
.btn.blue {
  color: #0d47a1;
  border-color: #0d47a1;
}
.btn.blue.solid {
  color: white;
  background-color: #0d47a1;
}

.features {
  border-bottom: #90caf9 1px solid;
  border-top: #90caf9 1px solid;
  background-color: #e3f2fd;
  padding: 24px;
}
@media (min-width: 701px) {
  .features {
    padding: 48px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.features h2 {
  color: #1565c0;
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-align: center;
}
.features > div {
  width: 100%;
}
@media (max-width: 700px) {
  .features > div {
    padding: 0;
  }
}
@media (min-width: 701px) {
  .features > div {
    display: flex;
    justify-content: center;
  }
}
.features .block {
  background-color: white;
  padding: 16px;
  border-radius: 4px;
  border: #90caf9 1px solid;
  width: 100%;
}
@media (min-width: 701px) {
  .features .block {
    flex: 1;
    width: 30dvw;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .features .block {
    margin-bottom: 16px;
  }
}
.features .block:first-of-type {
  margin-right: 16px;
}

.more-info {
  padding-top: 48px;
  padding-bottom: 48px;
}
.more-info h2 {
  color: #1565c0;
  font-size: 1.7rem;
  margin-bottom: 16px;
  text-align: center;
}
.more-info h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-align: left;
}
.more-info h3 span {
  color: #1565c0;
}
.more-info p {
  font-size: 1rem;
  margin: 12px 0;
}