:root {
    --black: #000;
    --blackSemitransparent: #23232388;
    --red: #F44;
    --blue: #007bff;
    --darkcyan: #1a6692;
    --lightgray: #f7f7f7;
    --lightred: #ff6060;
    --gray: #eee;

    --textOutline: 
        -0 -1px 1px var(--black),
        0 -1px 1px var(--black),
        -0 1px 1px var(--black),
        0 1px 1px var(--black),
        -1px -0 1px var(--black),
        1px -0 1px var(--black),
        -1px 0 1px var(--black),
        1px 0 1px var(--black),
        -1px -1px 1px var(--black),
        1px -1px 1px var(--black),
        -1px 1px 1px var(--black),
        1px 1px 1px var(--black),
        -1px -1px 1px var(--black),
        1px -1px 1px var(--black),
        -1px 1px 1px var(--black),
        1px 1px 1px var(--black);
}

body {
    /*background-color: #333 !important;*/
}

@font-face
{
    font-family: ChaletParisNineteenEighty; /* Очень тонкий */

    src: url('../fonts/Chalet ParisNineteenEighty.ttf');
}
@font-face
{
    font-family: Neverwinter; /* Рукописный загадочный */

    src: url('../fonts/Neverwinter.ttf');
}
@font-face
{
    font-family: HouschkaRounded; /* Кругловатый */

    src: url('../fonts/Houschka Rounded.ttf');
}
@font-face
{
    font-family: CenturyGothic; /* Без засечек */

    src: url('../fonts/Century Gothic.ttf');
}



*
{
    font-stretch: ultra-expanded;

    margin: 0;
    padding: 0;

    border-collapse: collapse;

    /*white-space: nowrap;*/
}

a
{
    text-decoration: none;

    color: inherit;
}

body
{
    overflow-y: scroll;

    background-color: white;
    background-attachment: fixed;

    text-align: -webkit-center;
    font-family: CenturyGothic, sans-serif;
}

button,
input
{
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
}
/*input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: inherit;
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: inherit;
    transition: background-color 99999s ease-in-out 0s;
    font-size: 1em;
    font-family: inherit;
}*/


svg
{
    width: 100%;
    height: 100%;
}
svg path
{
    fill: inherit;
}



hr 
{
    border: none;
    border-bottom: solid 1px var(--gray);
}

h2
{
    font-size: 30px;
}
h4,
.h4
{
    letter-spacing: 0;
    font-size: 17px;
    font-weight: bold;
    color: var(--darkcyan);
}



button,
.button,
input[type=button]
{
    cursor: pointer;
    font-family: ChaletParisNineteenEighty, sans-serif;

    display: inline-block;

    padding: 10px 20px;

    color: white;
    border-radius: 5px;
    background-color: var(--red);
    font-weight: 600;
    white-space: nowrap;

    letter-spacing: 1px;
}

#content
{
    font-size: 14px;
    line-height: 1.5;

    position: relative;

    width: calc(100% - 90px);
    max-width: 1100px;
    padding: 10px;

    text-align: left;

    flex: 1 0 auto;
}

footer
{
    max-width: 1100px;
    font-size: 14px;
    padding-bottom: 60px;
    padding-top: 0;
    text-transform: uppercase;
    flex: 0 0 auto;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
footer hr 
{
    margin: 60px 0;
    width: 100%;
}

.showMessage 
{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 30px;
    border-radius: 10px;
    z-index: 100000;
    box-shadow: 10px 10px 30px black;
    opacity: 0;
    cursor: default;
    max-width: 300px;
    max-height: calc(100vh - 300px);
    overflow: auto;

    -webkit-transition: transform 300ms, opacity 300ms;
    -moz-transition: transform 300ms, opacity 300ms;
    -o-transition: transform 300ms, opacity 300ms;
    transition: transform 300ms, opacity 300ms;
}
.showMessage * {
    cursor: default;
    overflow-wrap: anywhere;
}
.showMessage .ps
{
    margin-top: 20px;
    font-size: 8pt;
    opacity: 0.5;
}