body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    margin: 0;
    font-size: 16px;
    background-color: rgb(242, 242, 242);
    text-size-adjust: none;
}

p.larger {
    font-size: 1.06em;
    line-height: 1.4em;
}

p.buyArea {
    margin-top: 1.8em;
    margin-bottom: 1.8em;
}

p.buyAreaSmall {
    margin-top: 1.4em;
    margin-bottom: 1.4em;
}

div.card {
    background-color: rgb(242, 242, 242);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

div.card.feature {
    padding: 6px;
}

div.card a img {
    cursor: pointer;
}

div.container {
    width: 620px;
    margin-left: auto;
    margin-right: auto;
}

div.container ul li {
    line-height: 1.35em;
    margin-bottom: 0.2em;
}

.buyButton {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    background: linear-gradient(to bottom, #3d94f6 5%, #2568d3 100%);
    background-color: #3d94f6;
    border-radius: 22px;
    border: 1px solid #337fed;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
    padding: 10px 20px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #1570cd;
}

.buyButton:hover {
    background: linear-gradient(to bottom, #398eef 5%, #2162ca 100%);
    background-color: #1e62d0;
    text-decoration: none;
}

.buyButton:active {
    position: relative;
    top: 1px;
}

img.dock {
    margin-top: -16px;
    margin-bottom: 0px;
}

div.iconGrid {
    overflow: hidden;
    background-color: black;
    padding: 12px 0;
}

div.iconRow {
    display: flex;
    gap: 2px;
}

div.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

div.features div.feature {
    page-break-inside: avoid;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

div.feature p {
    margin: 8px;
    display: inline-block;
}

div.feature p.featureIcon {
    display: block;
    text-align: center;
    margin-bottom: 0;
}

div.feature p.featureIcon span img {
    width: auto;
    height: 36px;
    filter: drop-shadow(0px 1px 4px rgb(0 0 0 / 0.12));
}

a {
    color: #3d70df;
    text-decoration: none;
}

p.contact {
    margin-top: 0;
    font-size: 0.8em;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.35em;
}

p.center {
    text-align: center;
}

div.screenArea {
    background-color: black;
    text-align: center;
}

div.featureArea {
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
}

div#header {
    margin-top: 32px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 620px;
    display: flex;
    align-items: center;
    gap: 10px;
}

div#header div#icon {
    flex-shrink: 0;
}

div#header div#titles {
    margin-right: 16px;
}

div#header h1 {
    font-size: 2em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.2em;
}

div#header h2 {
    font-size: 1.2em;
    color: #616161;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.3em;
}

div#footer {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    color: gray;
    width: 620px;
    text-align: center;
    font-size: 0.7em;
}

p.screenCaption {
    margin-top: 0;
    margin-bottom: 0;
    color: rgb(184, 184, 184);
    font-size: 12px;
}

p.youtube {
    margin-top: -18px;
    margin-bottom: 0;
    color: rgb(184, 184, 184);
    font-size: 12px;
}

p.youtube a .pop {
    margin-top: 12px;
    transition: all 0.2s ease-in-out;
}

p.youtube a:hover .pop {
    transform: scale(1.05);
}

img {
    max-width: 100%;
    height: auto;
}

h3 {
    margin-top: 32px;
    font-weight: 500;
    font-size: 1.4em;
    text-align: center;
}

@media screen and (max-width: 620px) {
    div.container {
        width: 100%;
    }

    div#footer {
        width: 100%;
    }

    div#header {
        width: 100%;
        gap: 4px;
    }

    div#header div#icon {
        margin-left: 2px;
    }

    div#header div#icon img {
        width: 92px;
        height: 92px;
    }

    div#header h1 {
        font-size: 1.8em;
    }

    div#header h2 {
        font-size: 1.0em;
    }

    div.features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}