html, body {
    padding: 0;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: black;
    color: white;
}
::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
::-webkit-scrollbar-track {
    background: black;
}
::-webkit-scrollbar-thumb {
    background: white;
}
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:focus {
    background: darkgray;
}
.line {
    width: 100%;
    height: 1px;
    background-color: gray;
}
a {
    color: rgb(60, 206, 255);
}
a:hover {
    color: rgb(50, 169, 209);
}
a:visited {
    color: slateblue;
}
header {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background: linear-gradient(180deg,rgba(0,0,0,0.3),rgba(0,0,0,1)),
                url("bg.jpeg");
    background-position: center center;
    background-size: cover;
}
.header-title {
    color: white;
    font-size: 48px;
    font-weight: normal;
    margin: 1em;
}
.open-editor {
    display: block;
    text-align: center;
    border: none;
    border-radius: 2px;
    background-color: dodgerblue;
    color: white !important;
    padding: 1em 3em;
    margin: 1em;
    text-decoration: none;
}
.read-more {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0.5em;
    left: 0;
    height: 4em;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.read-more p {
    margin: 0 0 0.5em 0;
}
#editor-container {
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 2em;
}
section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: normal;
}
section p {
    text-align: center;
}
.highlights-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.highlight {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 1em;
}
.highlight-logo {
    display: flex;
    width: 3em;
    height: 3em;
    border-radius: 0.5em;
    justify-content: center;
    align-items: center;
    background-color: dodgerblue;
    color: white;
}
.highlight-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 1em;
    font-size: 12px;
}
.highlight-content h3 {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0;
}
.features-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.feature-nav {
    min-width: 200px;
    width: 20%;
    border: none;
    border-radius: 0;
    padding: 1em;
    background: black;
    color: white;
    box-sizing: border-box;
}
.feature-nav.active {
    color: dodgerblue;
    border-bottom: solid 3px dodgerblue;
    box-sizing: border-box;
}
#feature-content {
    text-align: center;
    font-size: 12px;
    margin: 2em;
}
#feature-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: calc(100vh - 4em);
}
.feature-img {
    width: 60%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: none;
}
.feature-img.active {
    display: block;
}
.faq-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 4em;
}
.qa {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
.q {
    font-size: 24px;
    font-weight: normal;    
}
.a {
    text-align: unset;
}
footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 3em;
}
footer h2 {
    text-align: center;
    font-size: 36px;
    font-weight: normal;
}
footer p {
    text-align: center;
}
footer .copyright {
    font-size: 12px;
    color: darkgray;
}