@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: Sancreek;
  src: url(../font/Sancreek-Regular.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: GrandHotel;
  src: url(../font/GrandHotel-Regular.ttf) format("truetype");
  font-weight: normal;
}

body {
  background-image:url("../images/background.jpg");
  background-attachment:fixed;
}

article, header, footer {width:96%; max-width:800px; display:block; margin:15px auto; border:double 6px black; background-color:WhiteSmoke}

hr {overflow: visible; width:98%;  border-top: 5px double Black;} 

h1, h2, strong {font-family:Sancreek,fantasy; font-weight: normal}
h1,h2 {margin: 15px 15px 0 15px}
h1 {text-align:center; font-size:1.9em}
h1 + p {margin: 0 12px 10px 29px}
p {font-size:1.7em; font-family:GrandHotel,cursive; margin: 0 7px 12px 15px}
footer p {margin-top: 12px}

a {color:RoyalBlue; text-decoration:none}
a:hover {color:Chocolate}
a:active {color:Purple}

address {text-align:center; font-style:normal}
.Centruj {text-align: center}

/* NAV MOBILE */
@media only screen and (max-width: 949px) {

  /* Style the navigation menu */
  nav.Mobile {
    position: fixed;
    top: 0;
    right: 0;
    text-transform: uppercase;
    width: 60%;
    z-index: 3;
    padding-left: 1rem;
    background-color: transparent;
  }

  /* Hide the links inside the navigation menu (except for logo/home) */
  nav.Mobile #myLinks {
    display: none;
    background-color: #333;
    overflow: hidden;
    width: 100%;
  }

  /* Style navigation menu links */
  nav.Mobile a {
    color: hsl(27.6,87.1%,66.7%);
    padding: .4rem;
    text-decoration: none;
    font-size: 1.4rem;
    display: block;
  }
  nav.Mobile a.Logo {
    background-color: transparent;
  }

  /* Style the hamburger menu */
  nav.Mobile a.icon {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  /* Add a grey background color on mouse-over */
  nav.Mobile a:hover {
    background-color: #ddd;
    color: black;
  }

  /* Style the active link (or home/logo) */
  .active {
    background-color: #555;
    color: white;
  }

  /* nav Computer */
  nav.Nav {
    display: none;
  }

}  /* End of max-width: 949px */

/* HORIZONTAL NAV */
@media only screen and (min-width: 950px) {

  body {
    --nav-height: 40px;
    padding-top: var(--nav-height);
  }

  nav.Nav {
    width: 100%;
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    text-transform: uppercase;
    background-color: hsla(25,36%,30%, 0.0);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: .3s;
    z-index: 3;
  }
  .NavLink, .NavLink:visited {
    color: hsl(27.6,87.1%,66.7%);
    text-decoration: none;
    margin: 0 .6rem;
    background-color: hsl(25,36%,30%);;
    padding: .2rem .5rem .3rem;
    border-radius: .5rem;
    border: 2px hsl(27.6,87.1%,66.7%) solid;
    font-weight: bold;
  }
  a.NavLink:hover {
    border: 2px #ddd solid;
    color: #ddd;
    background-color: #222;

  }
  a.NavLink:active {
    border: 2px #222 solid;
    color: #222;
    background-color: #ddd;
  }

  .NavHidden {
    transform: translateY(calc(-1 * var(--nav-height)));
    box-shadow: none;
  }

  nav.Mobile {
    display: none;
  }

}  /* End of min-width: 950px */