* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 550px;
    margin: 16px auto;
    border: 2px solid #231f20;
    padding: 20px 16px 1px;
    background-color: #fff;
    overflow: hidden;
    color: #231f20;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    position: relative;
}

header {
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 1;
}

footer {
    padding: 10px 0 0  173px;
    position: relative;
}

footer img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

p {
    margin: 0 0 18px;
}

h1 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: #231f20;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

@media all and (max-width: 548px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0 auto;
    }

    header {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 0 12px;
    }

    footer {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }

    footer img {
        position: static;
    }

    span {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}