@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #ededed;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
    background-color: #fff;
    padding: 4rem 6rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 1.1rem;
    margin-top: 1rem;
}

h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}
  

header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

header img {
    width: 25rem;
}

a.link {
    color: #107f67;
    font-weight: 700;
    text-decoration: underline;
}

footer i {
    color: #35baea;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header img {
        width: auto;
    }
}
