@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: 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-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 482px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background: #fff url(../images/background.jpg) no-repeat;
    height: 659px;
}


article {
    padding: 0 0 0 26px;
}



:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 13px;
    font-size: 19px;
    line-height: 24px;
}

h2 {
    font-size: 20px;
    margin: 15px 0 12px;
    line-height: 22px;
    text-align: center;
    width: 262px;
    font-style: italic;
    background: #0C8D31;
    padding: 10px;
    color: #FFF;
}

h3 {
    font-size: 19px;
    margin: 5px 0 10px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 24px;
}

h3 span {
    padding: 0 0 0 3px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
    margin: 0 0 5px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

.kontakt p {
    margin: 0 0 2px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.logo {
    position: absolute;
    bottom: 28px;
    right: 8px;
}

@media all and (max-width:481px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        background: #F4F5F7;
        height: auto;

    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
    .logo{position:static;}
    
    footer{
        background: #FFF;
        padding:1rem;
        display: flex;
        justify-content: center;
        }
   ul br {
        display: none;
    }
}