#app h1,
#app h2,
#app h3,
#app h4,
#app h5
{
    margin: 0;
}

#app h1
{
    font-weight: normal;
    font-family: var(--bold-font);
    font-size: 42px;
}

#app h2
{
    font-weight: normal;
    font-family: var(--bold-font);
    font-size: 32px;
}

#app h3
{
    font-weight: normal;
    font-family: var(--bold-font);
    font-size: 28px;
}

#app h4
{
    font-weight: normal;
    font-family: var(--bold-font);
    font-size: 20px;
}

#app h5
{
    font-weight: normal;
    font-family: var(--bold-font);
    font-size: 18px;
}

#app p
{
    font-size: 15px;
    margin: 0;
}

#app .small-text
{
    font-size: 12px;
}

#app .button
{
    --button-width: 300px;
    background-color: var(--main-brand-color);
    box-shadow: 0 3px 3px 0 rgba(255, 204, 0,0.14),0 1px 7px 0 rgba(255, 204, 0,0.12),0 3px 1px -1px rgba(255, 204, 0,0.2);
    border-radius: 30px;
    color: var(--text-color);
    padding: 10px;
    text-align: center;
    display: inline-block;
    width: var(--button-width);
    font-family: var(--bold-font);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-weight: normal;
    box-sizing: content-box;
    font-size: medium;
}

#app .button.margin-bottom
{
    margin-bottom: 20px;
}

#app .center
{
    text-align: center;
}

#app .bold
{
    font-family: var(--bold-font);
}
