* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 460px;
    margin: 16px auto;
    border: 2px solid #4da358;
    padding: 14px 16px 12px;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

header {
    display: flex;
    align-items: center;
    gap: 50px;
}

header p strong {
    font-size: 22px;
    line-height: 1.2;
}

article {
    padding: 10px 0;
}

footer {
    font-size: 17px;
    line-height: 24px;
}

strong {
    font-weight: 700;
    font-size: 19px;
    line-height: 1.4;
}

p {
    margin: 0 0 8px;
}

h1 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
    color: #4da358;
}

h2 {
    font-size: 22px;
    margin: 0 0 6px;
    line-height: 28px;
    font-weight: 700;
}

a {
    color: #231f20;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media all and (max-width: 459px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0 auto;
    }

    header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    br:not(.mobile) {
        display: none;
    }
}