* {
  box-sizing: border-box;
}

:root {
/*  --grad-color-1:   rgba(255,185,50,1);
  --grad-color-09:  rgba(255,185,50,0.9);
  --grad-color-07:  rgba(255,185,50,0.7);
  --grad-color-01:  rgba(255,185,50,0.1);
  --grad-color-0:   rgba(0,0,0,0);*/
  --border-color:     rgb(210,210,210);
  --grad-color-1:     rgba(240,240,240,1);
  --grad-color-09:    rgba(240,240,240,0.9);
  --grad-color-07:    rgba(240,240,240,0.7);
  --grad-color-01:    rgba(240,240,240,0.1);
  --grad-color-0:     rgba(0,0,0,0);
  --h-text-color:     #cc6c72;
  --main-text-color:  #4d4c29;
  --main-font:        ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/*@font-face {
    font-family: 'Levorotary';
    src: url('../fonts/Marker SD.ttf');
    font-style: normal;
    font-stretch: 1% 500%;
}*/


body {
  font-size: 1em;
  font-family: var(--main-font);
  margin: 0;
  color: var(--main-text-color);
  line-height: 1.6em;
}

a, a:visited {
  color: var(--h-text-color);
  text-decoration: underline;
}
a:hover {
  /*background-color: #FFAEE8;*/
  background-color: var(--h-text-color);
  color: #fcfcfc;
}

#background
{
  position: fixed;
  z-index: -4;
  width: 150%;
  height: 150%;
  left: -25%;
  top: -25%;
  background-image: url('images/decor/bg_test_1.png');
  /*background-size: 2000px auto;*/
  background-color: #a1abb4;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  /*image-rendering: pixelated;*/
}

#bg_city {
  position: fixed;
  width:  inherit;
  height: inherit;
  z-index: -3;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 45% bottom; 
  background-image: url('images/decor/intro_bg_city_1.png');
}

#bg_taxophone {
  position: fixed;
  width:  inherit;
  height: inherit;
  z-index: -2;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: auto 600px;
  background-position: 10% 120%; 
  background-image: url('images/decor/taxophone.png');
}

#bg_pipe {
  position: fixed;
  width:  inherit;
  height: inherit;
  z-index: -2;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: auto 1000px;
  background-position: 90% bottom; 
  background-image: url('images/decor/pipe_dark.png');
}

#bg_betons {
  position: fixed;
  width:  inherit;
  height: inherit;
  z-index: -2;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 1800px auto;
  background-position: -100px 150%; 
  background-image: url('images/decor/betons.png');
}

#bg_grad {
  position: fixed;
  width:  inherit;
  height: inherit;
  z-index: -1;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center; 
  background-image: linear-gradient(60deg, var(--grad-color-0), var(--grad-color-07), var(--grad-color-09), var(--grad-color-1), var(--grad-color-09), var(--grad-color-07), var(--grad-color-0));
}

#container {
  max-width:  500px;
  min-height: 600px;
  top:        250px;
  padding-top:    30px;
  padding-bottom: 10px;
  margin-top:     125px;
  margin-left:    auto;
  margin-right:   auto;
  width: 90%;
  display:    flex;
  flex-direction: column;
}


#headerArea
{
  height: 150px;
  width: 100%;
  position: relative;
  left: 0%;
  margin-bottom: 30px;
}

#headerLogo
{
  height: auto;
  width:  100%;
  margin: auto;
}

#navbar {
  width:        100%;
  padding:      0 0;
  line-height:  2.5em;
  font-size:    2em;
  text-align:   center;
}
#navbar ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#navbar li {
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
/*  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;*/
}
#navbar li a, #navbar li a:visited {
  text-decoration: none;
  padding: 3px;
  color: inherit;
}
#navbar li a:hover {
  background-color: inherit;
  color: var(--h-text-color);
}
#navbar li a span
{
  text-decoration: underline;
}

#navbar img
{
  height: 1em;
  vertical-align: text-bottom;
}

.imageCenter
{
  display:  block;
  margin:   0px auto;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

table.noBorder
{
  border: none;
}

th.noBorder
{
  border: none;
}

td.noBorder
{
  border: none;
}

#footerWrapper
{
  flex-grow: 4;
  display: flex;
  align-items: flex-end;
}

footer {
  font-family: var(--main-font);
  color: inherit;
  position: relative;
  width: 100%;
  font-size: 0.6em;
  padding: 5px 2% 5px 2%;
  line-height: 1em;

}

#footerButtons
{
  padding-top: 5px;
  display: flex;
}

#footerFlex
{
  display:    flex;
  justify-content: space-between;
}

h1, h2, h3, h4, h5 {
  var(--main-font);
  color: var(--h-text-color);
  line-height: 1em;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span
{
  position: relative;
}

h1 span:first-child
{
  z-index: 2;
}

hr {
  border: solid hotpink;
  border-width: 1px 0 0 0;
}

blockquote {
  padding: 0 20px;  margin-left: 0;  border-left: 2px solid #fc51ce;
  line-height: 1.6em;
}

ul.none {
    padding: 0;
    list-style-type: none;
}

ul
{
  padding-left: 10px;
}

/* Alignment classes */
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}