﻿:root {
    --headerBackground: #fdf7e3;
    --contentBackground: #fefaed;
    --darkGreen: #588E2F;
    --content-text-color: #666666;
}


html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

a {
    color: var(--darkGreen);
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/css/fonts/OpenSans-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/css/fonts/OpenSans-latin-ext.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/css/fonts/Poppins-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('/css/fonts/Poppins-latin-ext.woff2') format('woff2');
}

@font-face {
    font-family: 'Railway';
    font-style: normal;
    font-weight: 400;
    src: url('/css/fonts/Railway-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Railway';
    font-style: normal;
    font-weight: 400;
    src: url('/css/fonts/Railway-latin-ext.woff2') format('woff2');
}

body {
    background-color: var(--contentBackground);
    font-family: 'Railway', sans-serif;
    font-size: 16px;
}

.message {
    padding: 10px;
    position: fixed;
    top: 50px;
    left: 50%;
    margin-left: -200px;
    width: 400px;
    height: 100px;
    background-color: greenyellow;
    border: 2px solid green;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    z-index: 5000;
}

.errorMessage {
    color: white;
    background-color: red;
    border: 2px solid darkred;
}

.pageContent {
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 150px;
    color: var(--content-text-color)
}

