﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 560px;
    margin: 16px auto;
    border: 2px solid #231f20;
    padding: 14px 16px 0;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

header {
    padding: 0 0 12px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 15px;
    text-align: justify;
}

h1 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 23px;
    font-weight: 700;
}

h1 span {
    display: block;
    font-size: 17px;
    font-weight: 400;
}

a {
    color: #231f20;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media all and (max-width: 559px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0 auto;
    }

    .flex {
        flex-direction: column;
        align-items: center;
        margin: 0 0 16px;
    }

    h1 {
        line-height: 24px;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }
}