﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 660px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 23px;
    font-weight: 400;
}

header {
    padding: 50px 45px 25px;
    text-align: right;
}

article {
    padding: 0 45px 50px;
    position: relative;
}

footer {
    padding: 35px 16px;
    background: #4a4d4e url('./bachground.jpg') no-repeat 0 0;
    background-size: cover;
    text-align: center;
    color: #fff;
}

footer span {
    white-space: nowrap;
}

h1 {
    margin: 0 0 40px;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
}

h2 {
    font-size: 58px;
    line-height: 1;
    font-weight: 700;
    font-family: "Indie Flower", cursive;
    color: #7654a3;
}

h3 {
    margin: 0 0 8px;
    font-size: 27px;
    line-height: 31px;
    font-weight: 700;
    color: #7654a3;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    padding: 0 0 20px;
    list-style: none;
    line-height: 29px;
    font-size: 19px;
    position: relative;
    z-index: 6;
}

ul li {
    padding-left: 18px;
    position: relative;
}

li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 12px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

footer p {
    margin-bottom: 18px;
}

section {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
}

@media all and (max-width: 659px) {
    #wrapper {
        margin: 0;
        border: none;
        font-size: 16px;
        line-height: 22px;
    }

    header,
    footer {
        padding: 15px;
    }

    article {
        padding: 15px 15px 0;
    }

    ul br {
        display: none;
    }

    section {
        position: static;
        text-align: right;
        margin-right: -16px;
    }
}