*, html {

}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
    margin: 0px;
    padding: 0px;
}

.header {
    color: white;
    background-color: #107aca;

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    margin: 0px;
    height: 68px;
}

.header a.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    color: inherit;
    height: 36px;
    text-decoration: none
}
.header a.item:hover {
    background-color: #7faed2;
}
.header .item.logo {
    margin-right: 20px;
    font-family:cursive;
    font-size:1.4em;
}

.content {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 98px);
}

.content .intro {
    margin-top: 32px;
    font-style: italic;
    color: gray;
    font-size: 0.85em;
}

.content .outro {
    margin-top: 64px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.content .outro .label {
    font-weight: bold;
    margin-bottom: 8px;
}

.content .outro .field {
    margin-bottom: 32px;
    background-color: #eaeef3;
    padding: 20px;
    border-radius: 4px;
    line-height: 1.4em;
    font-family: inherit;
    font-size: inherit;
}

.content .demo a.sdk-button {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f30e40;
    padding: 16px 32px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color ease 0.10s;
}
.content .demo a.sdk-button:hover{
    background-color: #db0b39;
}

.footer {
    color: gray;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
}