﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    text-align: left;
    color: #4c4d4f;
    font-weight: 400;
}

#wrapper {
    margin: 0.75rem auto;
    padding: 0 1.6875rem 1.25rem;
    max-width: 390px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    border: solid thin #58585a;
}

article p:nth-of-type(1) strong:nth-of-type(2){
    white-space: nowrap;
}

header {
    margin: 0 -1.6875rem 0.625rem;
}

footer {
    margin: 0.5625rem 0 0;
}

p {
    margin-bottom: 0.5625rem;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #4c4d4f;
    text-decoration: none;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

@media screen and (max-width: 390px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    article p:nth-of-type(1) strong:nth-of-type(2){
        white-space: normal;
    }

    footer br, article p:nth-of-type(1) br {
        display: block;
    }
}