﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 455px;
    margin: 12px auto;
    border: 1px solid #000;
    padding: 15px;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

header {
    padding: 0 0 12px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

p {
    margin: 0 0 10px;
}

h1 {
    margin: 15px 0;
    font-size: 37px;
    line-height: 42px;
    font-weight: 700;
}

a {
    color: #200e00;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.jus {
    text-align: justify;
}

footer p {
    margin-bottom: 0;
}

h1 span {
    font-size: 73%;
    line-height: 1.1;
}

@media all and (max-width: 454px) {
    #wrapper {
        margin: 0;
        border: none;
    }
	
	h1 {
    font-size: 27px;
    line-height: 33px;
    }

    .jus {
        text-align: left;
    }

    footer {
        flex-direction: column;
    }
}