﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

img {
    max-width: 100%;
}

body {
    font-size: 16px;
    line-height: 22px;
    font-family: Arial, sans-serif;
    color: #000;
    font-weight: normal;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 0.625rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
    padding: 80px;
}

h1 span {
    font-weight: normal;
    display: block;
}

h1 {
    margin: -75px auto 51px;
    font-size: 19px;
    line-height: 25px;
    font-weight: 700;
    text-align: center;
    width: 66%;
}

h2 {
    font-size: 17px;
    line-height: 21px;
    font-weight: 700;
    text-decoration: underline;
}

footer p {
    text-align: left;
}

p span {
    white-space: nowrap;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

header {
    display: flex;
    justify-content: space-between;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 15px 0 15px 25px;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2010";
    color: #000;
    float: left;
    font-size: 19px;
    text-indent: -1.5rem;
    margin-top: -1px;
}

.ul li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 19px;
    text-indent: -1.5rem;
    margin-top: 0px;
}

.link {
    color: #0462c1 !important;
    text-decoration: underline !important;
}

@media (max-width: 799px) {
    #wrapper {
        hyphens: auto;
        margin: 0;
        border: none;
        padding: 16px;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }
}

@media (max-width: 540px) {
    h1 {
        width: auto;
        margin: 15px 0;
    }

    ul {
        margin-left: 0
    }
}