:root {
    --border-color: #d8e1ec;
    --shadow-color: 216deg 30% 60%;
}
html {
    font-family: -apple-system, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif; 
    -webkit-font-smoothing: antialiased;
}
body {
    background-color: #EBF3FF;
    background: linear-gradient(168deg,rgba(255, 255, 255, 1) 50%, rgba(235, 243, 255, 1) 100%);
}
b, strong {
    font-weight: bold;
}
i, em {
    font-style: italic;
}
u {
    text-decoration: underline;
}
h2, h3, h4 {
    letter-spacing: -0.5px;
}
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.275em; 
}
h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.275em;
}
h4 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.275em;
}
mark {
    margin: 0 -0.4em;
    padding: 0.1em 0.4em;
    border-radius: 0.8em 0.3em;
    background: transparent;
    background-image: linear-gradient(
      to right,
      rgba(255, 225, 0, 0.1),
      rgba(255, 225, 0, 0.7) 4%,
      rgba(255, 225, 0, 0.3)
    );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
.container {
    margin: 0 auto;
    max-width: 576px;
}
#header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-bottom: 1px solid var(--border-color);
}
#header-nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7.5px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.65px;
}
#hero {
    margin-bottom: 75px;
    text-align: center;
}
#hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3em;
}
#hero .smaller {
    font-size: 1.5rem;
    display: block;
    line-height: 1.45em;
    margin-top: 10px;
}
#hero blockquote {
    color: #e70a0a;
    font-family: 'Caveat';
    font-size: 2rem;
    margin-top: 50px;
    line-height: 1.3em;
    letter-spacing: -0.5px;
}
#hero #badges{
    margin-top: 50px;
}
#features {
    margin-bottom: 75px;
}
#features h3 {
    text-align: center;
}
#features blockquote {
    color: #777;
    font-family: 'Caveat';
    font-size: 2rem;
    margin-top: 10px;
    line-height: 1.3em;
    letter-spacing: -0.5px;
    text-align: center;
}
#features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    line-height: 1.45em;
    margin-top: 75px;
  }
  #features .features-grid h4 {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  #features .single-feature {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
  }
  #features .single-feature img {
    display: block;
    margin: 0 auto;
    max-width: 60%;
  }
  .single-feature p:not(:last-child) {
    padding-bottom: 10px;
}
#faq {
    margin-bottom: 75px;
}
#faq .question {
    margin-top: 20px;
}
#faq .question summary {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.425em;
    margin-top: 15px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
#faq .question p {
    margin-top: 5px;
    line-height: 1.45em;
}
.page-content {
    margin-bottom: 75px;
}
.page-content, .page-content + footer {
    max-width: 640px;
}
.page-content .page-meta-updated {
    font-size: 0.8rem;
    color: #444;
    display: block;
}
.page-content h3 {
    font-size: 1.5rem;
}
.page-content p {
    line-height: 1.45em;
}
.page-content > * {
    margin-top: 15px;
}
#more-tools {
    margin-bottom: 75px;
}
#more-tools ul {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#more-tools ul li.linked-tool {
    display: flex;
    align-items: center;
    gap: 10px;
}
#more-tools ul li.linked-tool a {
    color: rgb(34, 34, 34);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.425em;
    text-decoration: none;
}
#more-tools ul li.linked-tool a:hover {
    text-decoration: underline;
}
footer {
    color: #444;
    font-size: 0.75rem;
    padding-bottom: 40px;
}
footer a, footer a:visited {
    color: #444;
}
footer a:hover, footer a:active {
    color: #222;
}
footer ul {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .container {
        max-width: 90vw;
    }
    #hero h2 {
        font-size: 2.25rem;
    }
    #hero h2 .smaller {
        font-size: 1.3rem;
    }
    #hero blockquote {
        font-size: 1.75rem;
    }
    #more-tools ul li.linked-tool {
        align-items: flex-start;
    }
    #more-tools ul li.linked-tool img {
        margin-top: 5px;
    }
}