﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 490px;
    margin: 12px auto;
    border: 2px solid #8b979e;
    padding: 7px 10px 1px 70px;
    background: #fff;
    overflow: hidden;
    color: #8b979e;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    position: relative;
}

header {
    transform: rotate(-90deg);
    position: absolute;
    z-index: 3;
    left: -111px;
    top: 106px;
}


footer {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;
}

p {
    margin: 0 0 10px;
    text-align: justify;
}

h1 {
    margin: 10px 0;
    font-size: 1.425rem;
    line-height: 26px;
    font-weight: 700;
    color: #fcaf17;
    text-align: center;
}

h2 {
    font-size: 16px;
    margin: 0 0 12px;
    line-height: 18px;
    font-weight: 700;
    color: #231f20;
}

a {
    color: #8b979e;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #231f20;
}

.text-right {
    text-align: right;
    padding-right: 91px;
}

@media all and (max-width: 489px) {
    #wrapper {
        margin: 0;
        padding: 10px;
        border: none;
    }

    header {
        position: static;
        transform: none;
        text-align: center;
        padding: 0 0 20px;
    }

    p {
        text-align: left;
    }

    .text-right {
        text-align: center;
        padding-right: 0;
    }

    footer {
        position: static;
        text-align: center;
    }
}