@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v35-latin-regular.eot'); 
  src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), 
       url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), 
       url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), 
       url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v35-latin-700.eot'); 
  src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), 
       url('../fonts/open-sans-v35-latin-700.woff') format('woff'), 
       url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), 
       url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 730px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #093351;
    position: relative;
}

article {
    padding: 0 15px 15px 45px;
}

footer {
    padding: 0px;
    width: 237px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 39px;
    line-height: 1.1;
    text-align: right;
}
h1 span {
	font-size: 21px;
	font-weight: 400;
	white-space: nowrap;
}

h2 {
    font-size: 37px;
    line-height: 1.1;
    background: #f04e30;
    font-weight: 400;
    padding: 5px 10px;
    transform: scale(1) rotate(357deg) translateX(1px) skewX(1deg);
    margin-right: 81px;
}
h3{font-size: 21px;line-height: 23px;margin-top: 20px;}
img {
    max-width: 100%;
    display: block;
}

:is(h1,h3, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:730px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }
    article{padding: 16px}
    h2{margin-right: 0;}
    h1{
        font-size: 33px;
        margin-top: 20px
        }
}
@media only screen and (max-width:618px) {
    :is(h1,h2,h3,p){text-align: center;}
    h2{transform: none}
    footer{
        width: auto;
        justify-content: center;
        position: static;
        gap:15px;
        padding: 0 16px 16px;
    }
}
@media only screen and (max-width:390px) {
    h2{font-size: 28px;}
    h1{font-size: 26px;}
}