html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    background: #000000;
    color: #F5F5F5;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    text-align: start;
}

p {
    margin-bottom: 0;
}

#main-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

h2.app-name-text {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

h1.title-text {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

h2.subtitle-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.body-text {
    line-height: 1.6rem;
    margin-bottom: 1.35rem;
}

.download-btn {
    padding: 0.55rem 1.12rem;
    border-radius: 1.4rem;

    font-size: 1.2rem;
    font-weight: 400;

    background-color: #027AFF;
}

.screenshot {
    max-width: 1500px;
    /* Manual size to avoid layout changing on image load */
    width: 3540px; /* 3540 × 1371 pixels */
    aspect-ratio: 3540 / 1371;
    object-fit: cover; /* Ensures the image covers the specified area */

    border-radius: 10px;
    margin: 20px 0;
}

/* ---- Contact -------- */

#section-contact {
    padding: 1.5rem 0 3rem 0;
}

#section-contact h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 0.5em;
}

#section-contact p {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2em;
}

#section-contact dt {
    float: left;
    font-weight: 300;
}

#section-contact dd {
    margin: 0 0 0.85em 5.5em;
}

@media screen and (max-width: 980px) {

    #section-contact {
        display: block;
        width: 100%;
    }

}

/* ---- Footer -------- */

#footer {
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    background: #101010;
    font-size: .9rem;
    color: #5f5f5f;
}

#footer p {
    padding: 0 0;
}

/* Mobile devices */

@media screen and (max-width: 767px) {

    .screenshot {
        width: 900px;
        margin-top: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Common */

.gray-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Bootstrap */

.row {
    /* '!important' not yet needed to ensure overriding any conflicting styles. */
    align-items: center;
}

.btn-primary {
    --bs-btn-color: #fcfcfc;
    --bs-btn-hover-color: #eeeeee;
}
