﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    padding: 51px 65px;
    background-color: #fff;
}

header {
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

article {
    margin: 0;
}

.link {
    color: #0000FF !important;
    text-decoration: underline !important;
}
.infor{display: flex;gap: 10px;flex-wrap: wrap;}
.infor p {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer {
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #4F81BD;
}

h1 span {
    font-weight: normal;
    display: block;
}

h2 {
    font-size: 16px;
    margin: 1rem 0 0;
    line-height: 21px;
    color: #5585BF;
}

h3 {
    font-size: 16px;
    margin: 1rem 0;
    line-height: 1.125rem;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 1rem 20px;
    list-style: none;
    text-align: justify;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.3725rem;
    text-indent: -1.5rem;
}

@media all and (max-width:800px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;
        padding:1rem;

    }

    :is(p,ul) {
        text-align: left;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}