@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #6B696B;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 900px;
    border: 1px solid #D4D4D4;
    background: #fff;
}

hr {
    border: none;
    margin: 1rem -1rem;
    border-bottom: 1px solid #D4D4D4;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0.5rem 0rem 0rem;
    font-size: 1.5em;
    line-height: 1.1em;
}

h2 {
    font-size: 1.125em;
    line-height: 1.3;
}

h3 {
    font-size: 1.25em;
    line-height: 1.3;
    padding: 1rem 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 16px;
}

ul li:before {
    content: '\1F782';
    color: #B1B0B1;
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}

.box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

article {
    padding: 1rem 1rem 1rem;
}

footer {
    padding: 0 1rem;
}

a.ins {
    color: rgb(0, 0, 238);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    p :is(span, a) {
        display: inline-block;
    }

}
@media only screen and (max-width:540px){
    .box{
        display: block;
    }
    figure{
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
} 
