@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: bold 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 880px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #060D13 url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.5em;
    line-height: 1.3;
    text-align: center;
}
h1 span {
    display: inline-block;
    font-size: 0.8em;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
strong, h2 {
    font-weight: 800;
}
.benfit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 12.5rem;
    flex-wrap: wrap;
}
.benfit img {
    display: block;
    margin: 0 auto 1.5rem;
}
.benfit p {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.3;
}
article {
    padding: 0 4.5rem 3rem;
}
footer {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    article {
        padding: 2rem;
    }
    article br {
        display: none;
    }
    .benfit {
        margin-bottom: 2rem;
    }
    h2 {
        width: 100%;
    }
    footer {
        padding: 1rem;
        display: flex;
        justify-content: center;
        position: static;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem;
    }
}