@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6b696b;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0000ff;
    text-decoration: underline;

}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.15rem;
    margin: 1rem 0;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

header {
    margin-bottom: 8rem;
}

article {
    border: 1px solid #dcdada;
}

article section {
    border-bottom: 1px solid #dcdada;
    padding: 1rem;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.title img {
    margin-right: 3rem;
}

.margin {
    margin-bottom: 2rem;
}

.margin2 {
    margin-bottom: 3rem;
}



@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
}

@media only screen and (max-width: 40rem) {
    .title {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .title img {
        margin: 0;
    }

    h1 {
        text-align: center;
    }
}

