@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    padding: 1rem 3rem;
    background-color: #fff;
}

header {
    padding: 1rem;
}

article {
    margin: 0;
}

footer {
    padding: 0 1rem;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0 12px;
    font-size: 35px;
    line-height: 1;
    color: #FFF;
}

h2 {
    font-size: 23px;
    margin: 1rem 0;
    line-height: 30px;
}

h3 {
    font-size: 0.8125rem;
    margin: 1rem 0;
    line-height: 1.125rem;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #16A367;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    color: #22C55E;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-indent: -1.25rem;
    margin: -2px 0 0;
}

.content {
    padding: 0 1rem;
}

.title {
    background: #0D1117;
    padding: 1rem;
    margin: 1rem 0;
    border-bottom: 4px solid #22C55E;
}

.title p {
    color: #9fe8bd;
    margin: 0;

}

.infor {
    background: #f1fbf5;
    display: flex;
    justify-content: space-between;
    border: 1px solid #22C55E;
    flex-wrap: wrap;
}

.border {
    border-right: 1px solid #22C55E;
}

.infor p {
    padding: 1rem;
    margin: 0;
    width: 33%;
}

p span {
    white-space: nowrap;
}

@media all and (max-width:800px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        padding: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    p {
        margin: 0 0 0.625rem;
        text-align: left;
    }


}

@media all and (max-width:480px) {
    .infor p {
        width: 100%;
    }

    .border {
        border: none;
        border-bottom: 1px solid #22C55E;
    }
}