﻿ :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Roboto', Arial, sans-serif;
     color: #000;
     line-height: 22px;
     font-size: 1rem;
     font-weight: 400;
 }

 #wrapper {
     position: relative;
     max-width: 575px;
     margin: 1rem auto;
     border: 1px solid #000;
     overflow: hidden;
     background-color: #fff;
     padding: 1rem 1rem 2px;
 }

 header {
     position: absolute;
     top: 1rem;
     left: 1rem;
 }

 article {
     padding: 0 0 8px 258px;
 }

 footer p {
     margin: 0 0 10px;
     text-align: center;
     font-size: 18px;
     line-height: 20px;
 }

 :is(strong, h1, h2, h3) {
     font-weight: 700;
 }

 h1 {
     margin: 8px 0;
     font-size: 18px;
     line-height: 22px;
 }

 h1 span {
     font-weight: normal;
     display: block;
     padding: 0 0 0 16px;
     font-size: 14px;
 }

 h2 {
     font-size: 18px;
     margin: 1rem 0;
     line-height: 22px;
 }

 h3 {
     font-size: 0.8125rem;
     margin: 1rem 0;
     line-height: 1.125rem;
 }

 p {
     margin: 0 0 9px;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     white-space: nowrap;
     text-decoration: none;
 }

 ul {
     margin: 0;
     list-style: none;
 }

 ul li {
     padding-left: 1.25rem;
 }

 ul li:before {
     content: "\2022";
     float: left;
     font-family: Arial, sans-serif;
     font-size: 1.5625rem;
     text-indent: -1.25rem;
 }

 .sp {
     letter-spacing: 1px;
 }

 img {
     max-width: 100%;
 }

 .text {
     padding: 0 0 11px;
 }

 .kontakt {
     background: url(bg.jpg) no-repeat top left;
     padding: 0 0 0 45px;
     line-height: 20px;
     width: 232px;
     font-size: 15px;
     margin: 8px 0 0;
 }

 @media all and (max-width:574px) {
     #wrapper {
         margin: 0 auto;
         border: none;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
     }

     br {
         display: none;
     }
 }

 @media all and (max-width:525px) {
     header {
         position: static;
     }

     article {
         padding: 0;
     } }