﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 550px;
    margin: 12px auto;
    border: 3px solid #000;
    padding: 10px;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
}

footer {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: -2px;
}

p {
    margin: 0 0 16px;
}

:is(h1, h3) {
    margin: -9px 0 10px;
    padding-left: 35px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    background: url('./icon.jpg') no-repeat 0 3px;
}

h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

a {
    color: #200e00;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.fontsize {
    font-size: 14px;
}

:is(h1, h3) small {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.flex {
    display: flex;
    gap: 12px;
    align-items: center;
}

.flex p {
    margin-bottom: 0;
    text-align: right;
}

@media all and (max-width: 549px) {
    #wrapper {
        margin: 0;
        border: none;
    }
	
	h1 br {
		display: none;
	}

    footer {
        position: static;
        text-align: center;
        margin-top: 15px;
    }
}