@font-face {
    font-family: TheanoDidot;
    src: url(/theanodidot.ttf);
}
* {
    box-sizing: border-box;
}
html {
    background: #15202b;
}
body {
    font-family: TheanoDidot, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
        Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    margin: 0;
    color: #eee;
    display: flex;
    flex-direction: column;
}
h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
}
main {
    display: flex;
    flex-direction: column;
}
header {
    color: #eee;
    background-color: #da916a;
}
footer {
    padding: 32px;
    padding-top: 64px;
    background-color: #15202b;
}
.light {
    color: #222;
    background-color: #da916a;
}
.dark {
    color: #eee;
    background-color: #15202b;
}
section {
    text-align: center;
    padding: 32px;
}
h1,
h2,
h3,
header {
    font-family: TheanoDidot;
}
h1 {
    font-size: 3rem;
}
h2 {
    color: #eee;
    font-size: 2.5rem;
}
h3 {
    font-size: 30px;
    text-align: center;
}
main p {
    text-align: justify;
}
.app-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}
.header-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 32px;
    column-gap: 32px;
    padding: 32px;
    background-color: #15202b;
}
.header-row a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.scrollable {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}
.wrap {
    flex-wrap: wrap;
}
section img {
    width: 200px;
    height: 200px;
}
.glide {
    padding-bottom: 32px;
}
.glide__slide img {
    max-width: 260px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #f6f6f6;
}
.glide__slide--active img {
    max-width: 300px;
    height: auto;
}
.glide__bullets {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: 16px;
}
.glide__bullet {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    border: 2px solid #ffd700;
    background-color: transparent;
}
.glide__bullet--active {
    background-color: #ffd700;
    border: 2px solid #ffd700;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 32px;
}
.background-img-wrapper {
    position: relative;
}
.background {
    max-width: 100%;
    object-fit: contain;
}
.background-logo {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 20vw;
}
.logo {
    width: 100px;
    height: auto;
}
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.vertical {
    display: flex;
    flex-direction: column;
}
.vertical-center {
    align-items: center;
}
.row-gap-32 {
    row-gap: 32px;
}
.social-logo {
    width: 80px;
    height: 80px;
}
.nop {
    padding: 0;
}
.screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.feature > h3 {
    width: 100%;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}
.feature {
    background: #1f2d3d;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.feature-img-wrapper {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 32px;
}
.feature-img-wrapper > img {
    width: 100px;
    height: 100px;
}
.footer-vertical {
    gap: 32px;
}
.scroll-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 314px;
    padding-top: 32px;
    padding-bottom: 32px;
}
.scroll-heading > h2 {
    z-index: 1;
}
.scroll-heading > img {
    position: absolute;
    height: 250px;
    width: 500px;
}

@media screen and (max-width: 600px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .scroll-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 214px;
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .scroll-heading > img {
        position: absolute;
        height: 150px;
        width: 300px;
    }
}
