@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #817974;
}

#wrapper {
    margin: 1rem auto;
    max-width: 450px;
    background: #fff;
    border: solid thin #231f20;
    position: relative;
}

header {
    position: relative;
}

article {
    padding: 0 20px 0 119px;
}

.pink {
    color: #c9178a !important;
}

.yellow {
    color: #f9a12e !important;
}

.margin-bottom {
    margin-bottom: 0;
}

.flex:nth-of-type(2) {
    width: 299px;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 41px;
    position: absolute;
    bottom: 16%;
    left: 15%;
    color: transparent;
}

p {
    margin-bottom: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #817974;
    text-decoration: none;
}

img {
    max-width: 100%;
}

footer {
    padding: 0 20px 16px 10px;
    display: flex;
    gap: 16px;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin: -79px 0 0;
}

.flex:nth-of-type(2) img {
    display: block;
}

@media screen and (max-width: 449px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    article {
        padding: 0 20px !important;
    }

    :is(h1, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 {
        font-size: 9vw;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }

    footer {
        display: block;
        margin: 0;
    }

    .flex:nth-of-type(2) {
        display: flex;
        justify-content: center;
        gap: 4px;
        align-items: center;
        margin-top: 10px;
    }
}