@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: #EBF0F0
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link:hover {
    text-decoration: underline;
}


h1 {
    font-size: 1.3rem;
    margin: 2rem 0;
}

h2 {
    font-size: 1.1rem;
}

h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #424242;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b70e0e;
}

.logo {
    padding-left: 3rem;
}

.image {
    width: 60%;
}

article {
    padding: 2rem 2rem 0;
}

footer {
    padding: 1rem 2rem;
}

@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) {
    h3 {
        font-size: 1.8rem;
    }
}


@media only screen and (max-width: 40rem) {
    .logo {
        padding: 1rem;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 1rem;
    }
}
