html, body, div, h1, h2, h3, h4, h5, h6, p, a, img, ul, ol, li, form, input, textarea
{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

:focus { outline: 0; }

ol, ul { list-style: none; }

div
{
    -webkit-overflow-scrolling: touch;
}

html, body, div#application
{
    width: 100%;
    height: 100%;
}

body
{
    font-family: "IBM Plex Sans", sans-serif;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
}

div.container
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10vh;
}

div.card
{
    border-radius: 5px;
    background-color: white;
    width: 600px;
    position: relative;
    box-shadow: 0 2px 4px rgba(15,34,58,0.12);
    overflow: hidden;
}

div.card div.title
{
    font-size: 1.2rem;
    font-weight: 500;
    color: #4d7c0f;
    position: relative;
    border-bottom: solid 1px #e9ebec;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

div.card div.title h4
{
    width: 100%;
    padding: 16px 0;
    text-align: center;
}

div.card div.content
{
    padding: 32px 16px;
    background-color: #fafafa;
    text-align: center;
}

div.card div.content a
{
    display: block;
    font-weight: bold;
    color: #4d7c0f;
    padding: 32px 0;
}
