html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ---------------------   style   ---------------------*/

body {
    width: 800px;
    margin: 0 auto;
    font-family: arial, sans-serif;
}

.container {
    width: 650px;
    height: auto;
    background-color: #FFFFFF;
    margin: 0 auto;
    margin-top: 103px;

}

h1 {
    font-size: 35px;
    text-align: center;
    color: #003E2C;
    padding-top: 30px;
    padding-bottom: 20px;
    font-weight: bold;
}

.logo{
    display: block;
}

p {
    font-size: 14px;
    text-align: justify;
    padding: 0px 30px 0px 30px;
    box-sizing: border-box;
    line-height: 20px;
}

img {
    display: block;
    margin: 0 auto;
}

.button{
    margin-top: 30px;
}
a {
    color: #ffffff;
    display: block;
    margin: 0 auto;
    width: 224px;
    font-size: 14px;
    background-color: #e01e26;
    text-align: center;
    border-color: #ca1b22;
    border-radius: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    text-decoration: none;

}

a:hover{
    background-color: #b3181e;
    border-color: #941419;
}

@media all and (min-width: 300px) and (max-width: 800px) {
    body {
        width: auto;
        background: none;
        background-color: #ffffff;
    }

    .container {
        width: auto;
        padding: 0px 20px;
    }

    h1 {
        font-size: 35px;
        padding: 30px 20px

    }

    .logo{
    display: block;
}

    p {
        font-size: 14px;
        line-height: 18px;
    }

    img {
        max-width: 100%;
    }

    .button{
        padding-bottom: 30px;
    }


}

@media screen and (max-width: 350px){

    a {
    width: 180px;
    font-size: 12px;
}

}


