:root {
    --system-fonts: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    --heading-font: Recoleta,"Noto Serif",Georgia,Times New Roman,Times,serif;
    --home-max-width: 800px
}

.id__home {
    margin: 0 auto;
    max-width: var(--home-max-width);
    font-family: var(--system-fonts);
    font-size: 16px;
    line-height: 24px;
    padding: 0 48px;
}

.id__home a {
    text-decoration: none;
}

.id__home a:hover {
    text-decoration: underline;
}

.id__home nav {
    padding-top: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.id__home h1 {
    font-family: var( --heading-font );
    font-weight: 400;
    font-size: 8rem;
    line-height: 12rem;
    letter-spacing: .2px;
    text-align: center;
    margin: 0;
}

.id__home h2 {
    font-family: var( --heading-font );
    font-weight: 400;
    font-size: 4rem;
    line-height: 6rem;
    letter-spacing: .2px;
    margin: 16px 0;
}

.id__home h3 {
    font-size: 2.4rem;
    font-weight: 600;
}

.id__home ul li {
    margin-left: 32px;
}

.id__home-hero {
    padding: 32px 0 16px;
}

.id__home-hero p {
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.id__home-feature {
    margin: 48px 0;
}

.id__home-feature-screenshot {
    max-width: 320px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 8px 8px #ccc;
    height: auto;
}

.id__home-feature-split {
    display: flex;
    flex-direction: row;
}

.id__home-feature-split img {
    margin-left: 24px;
    align-self: center;
}

.id__home-hero-button {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 32px;
}

.id__home-hero-button a {
    color: #FFF;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 20px;
    background-color: #85ad39;
    text-align: center;
    transition: background-color 0.2s ease;
}

.id__home-hero-button a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: #93b938;
}

.id__home-sign-in {
    margin-top: 24px;
}

.id__home-logo img {
    width: 230px;
}

.id__home-install {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 400px;
    margin: 32px auto 0;
}

.id__home-install-number {
    width: 90px;
}

.id__home-install-number .number {
    background: #13adeb;
    color: #FFF;
    border-radius: 38px;
    font-size: 42px;
    font-weight: bold;
    height: 76px;
    display: block;
    line-height: 76px;
    margin: 0 auto 6px;
    text-align: center;
    width: 76px;
}

/* Some overrides :( */
.footer .wrap {
    width: auto;
    max-width: 800px;
}

@media screen and ( max-width: 840px ) {
    .id__home h1 {
        font-size: 5rem;
        line-height: 7.5rem;
        margin-bottom: 24px;
    }

    .id__home-feature-split {
        flex-direction: column;
    }

    .id__home-feature-split img {
        margin-left: 0;
        margin-top: 24px;
    }

    .footer .automattic_joint {
        float: none;
        position: inherit;
        margin: 0 auto 24px;
        display: block;
        text-align: center;
    }
}