﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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
{
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #565656;
    font-size: 18px;
    background: #35AD53;
}

.page-content
{
    display: flex;
    justify-content: center;
    height: 100vh;
}

.page-content .inner
{
    align-self: center;
    text-align: center;
    width: 100%;
    background: #fff;
    padding: 50px;
    width: auto;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.page-content .inner a.logo
{
    display: block;
    margin: 0 0 30px 0;
}

.page-content .inner p
{
    line-height: 32px;
    margin-bottom: 15px;
}

.page-content .inner a
{
    color: #35AD53;
}

.page-content .inner hr
{
    border: 0;
    border-top: 2px dashed #d6d6d6;
}

.page-content .inner .catalog-link
{
    display: inline-block;
    margin: 30px auto 15px auto;
    background: #35AD53;
    border-bottom: 4px solid #308d47;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.page-content .inner .catalog-link:hover
{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

@media(max-width:992px){
    body
    {
        font-size: 24px;
    }
}