/* Reset */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

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

fieldset,
img {
    border: 0;
}

address,
caption,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

li {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}


html,
body {
    background-color: #fff;
    height: 100%;
    font-size: 100%;
    width: 100%;
    border: 10px solid #fff;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    color: #eee;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    font-family: 'Roboto', sans-serif;
    display: block;
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 450px;
}

.header {
    width: 100%;
    float: left;
    text-align: center;
}


.content {
    width: 100%;
}

.content p {
    font-size: 30px;
    font-weight: 100;
    color: #404040;
    line-height: 50px;
}

.content #large-text {
    text-transform: uppercase;
    color: #404040;
}

.content #small-text {
    font-size: 20px;
}







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

    body {
        border: 8px solid #eee;
        box-sizing: border-box;
    }

    .content #large-text {
        font-size: 24px;
        text-transform: uppercase;
        letter-spacing: 6px;
    }

    .content #small-text {
        letter-spacing: 3px;
        font-size: 18px;
    }
}


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

    html,
    body {
        border: 6px solid #eee;
        box-sizing: border-box;
    }


    h1 {
        margin: 30px 0 60px 0;
        font-size: 100px;
        font-weight: 700;
        color: #eee;
    }

    .content {
        width: 80%;
        padding: 0 10%;
    }


    .content p {
        font-size: 30px;
        font-weight: 100;
        color: #000;
        line-height: 30px;
    }

    .content #large-text {
        font-size: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .content #small-text {
        margin-top: 20px;
        line-height: 20px;
        letter-spacing: 1px;
        font-size: 13px;
    }
}