﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: "Jost", Arial, sans-serif;
    line-height: 1.2;
    font-weight: 400;
    font-size: 17px;
}

#wrapper {
    max-width: 496px;
    margin: 0.75rem auto;
    border: 1px solid #231f20;
    padding: 0.625rem 1rem 0.5rem;
    background-color: #fff;
    position: relative;
}

header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

article section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.25rem;
}

article section aside {
    width: 48%;
}

footer {
    padding: 1.5rem 0 0;
}

p {
    margin: 0 0 0.5rem;
    text-align: justify;
}

.text {
    position: relative;
    padding-left: 119px;
    margin-left: 22px;
    text-align: left;
}

.text ins {
    position: absolute;
    top: 0;
    left: 0;
}

.big {
    font-size: 18px;
}

h1 {
    margin: 0.5rem 0;
    padding-left: 22px;
    font-weight: 800;
    font-size: 23px;
    line-height: 1.5rem;
}

h1:before {
    content: '\2022';
    color: #231f20;
    float: left;
    font-size: 27px;
    text-indent: -1.375rem;
    font-family: Arial;
    margin-top: -2px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
}

@media all and (max-width: 495px) {
    #wrapper {
        padding: 1rem;
        margin: 0;
        border: none;
        hyphens: auto;
    }

    .nobr {
        white-space: nowrap;
    }

    p {
        text-align: left;
    }

    footer p:last-of-type a {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}