@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: 0.9rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #2d72f3;
    text-decoration: underline;
}

h1 {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0.03rem;
}

h1 span {
    font-size: 1.15rem;
}

h2 {
    font-size: 1.1rem;
    color: #d74d30;
    font-weight: 400;
}

h3 {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
    border: 1px solid #ededed;
    display: flex;
}

.image {
    background: url(../images/bg.png) no-repeat top;
    background-size: cover;
    width: 25%;
}

.image-respons {
    display: none;
}
.main-content {
    width: 80%;
}

header {
    background-color: #ee4423;
    border-bottom: 0.5rem solid #f6865e;
    padding: 3rem 2rem 0.3rem;
}
header p {
    font-size: 1.1rem;
}

article {
    padding: 1rem 2rem;
}

footer {
    padding: 0 3rem 2rem;
    display: flex;
    justify-content: end;
}

.qr {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    width: 4rem;
}

@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) {
    #wrapper {
        display: block;
    }

    .main-content {
        width: 100%;
    }
    
    .image {
        display: none;
    }

    header {
        text-align: center;
    }

    .qr {
        position: static;
    }

    footer {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        padding: 1rem;
    }
    
    article {
        padding: 1rem;
    }
    
    footer {
        padding: 1rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h1 br {
        display: none;
    }
}

