﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 575px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
    padding: 1rem 1rem 0;
}

header {
    margin: 0 68px;
    display: flex;
    gap: 30px;
    align-items: center;
}

header p {
    width: 275px;
    margin: 0;
}

article {
    margin: 0;
}

footer {
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0.75rem 0;
    font-size: 25px;
    line-height: 27px;
    text-align: center;
}

h1 span {
    font-weight: normal;
    display: block;
    font-size: 16px;
}

h2 {
    font-size: 21px;
    margin: 0.75rem 0 1rem;
    line-height: 25px;
    text-align: center;
}

h3 {
    font-size: 0.8125rem;
    margin: 1rem 0;
    line-height: 1.125rem;
}

p {
    margin: 0 0 0.75rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

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;
}

.center {
    text-align: center;
}

h2 ins {
    display: block;
}

p span {
    white-space: nowrap;
}

@media all and (max-width:574px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;

    }

    header {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    header p {
        width: 100%;
    }

    br {
        display: none;
    }


}