@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: NotoSerif;
  src: url(../font/NotoSerif-Regular.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: NotoSerif;
  src: url(../font/NotoSerif-Italic.ttf) format("truetype");
  font-style: italic;
}
@font-face {
  font-family: NotoSerif;
  src: url(../font/NotoSerif-Bold.ttf) format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: NotoSerif;
  src: url(../font/NotoSerif-BoldItalic.ttf) format("truetype");
  font-style: italic;
  font-weight: bold;
}

@font-face {
  font-family: Andika;
  src: url(../font/Andika-Regular.ttf) format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: Andika;
  src: url(../font/Andika-Italic.ttf) format("truetype");
  font-style: italic;
}
@font-face {
  font-family: Andika;
  src: url(../font/Andika-Bold.ttf) format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: Andika;
  src: url(../font/Andika-BoldItalic.ttf) format("truetype");
  font-style: italic;
  font-weight: bold;
}

/* Basic Selectors */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Andika, sans-serif;
  background-image:url("../images/background.jpg");
  background-repeat:no-repeat;
  background-attachment:fixed;
  background-position:center;
  background-color:WhiteSmoke; 
}

article, header, footer {
  width: 94%;
  max-width:960px;
  display:block;
  margin: 0 auto;
  border: double 6px black;
  background-color:WhiteSmoke;
  background-image:url("../images/wallpaper-tileable.jpg");
  position:relative;
  margin-bottom: 1rem;
}
article, header {
  padding: 0 .5rem .5rem 1rem;
}

hr {overflow: visible; width:98%;  border-top: 5px double Black;} 
hr.Last {position:relative; top:8px}

h1, h2, h3 {
  font-family: NotoSerif, serif;
  margin: 16px 12px 7px 12px;
  text-align: center
}
h1 {font-size:1.8em}
h2 {font-size:1.6em}
h3 {font-size:1.4em; margin: 8px 12px 3px 12px;}
p {font-size:1.4em; margin:0 8px 8px 8px; text-align:center}
p.Stahnout {margin:14px 22px 8px; text-align:right}
.Links {margin:0 8px 8px 22px; text-align:left}
h2.Links {margin-top:14px}

img[alt$="CD"] {
  display: block;
  margin-left: auto;
  margin-right: 0;
  max-width: 90%;
  width: 550px;
  height: auto;
}

a {color:DarkBlue; text-decoration:none}
a:hover {color:Chocolate}
a:active {color:Purple}

@media screen and (max-width: 699px) {
  strong {font-size: .8rem}
}
@media screen and (min-width: 700px) and (max-width: 999px) {
  strong {font-size: 1rem}
}
strong {font-weight:normal; background-color:LightGray; border: 2px solid Black; border-radius:28px; padding:0}
strong:hover {color:SaddleBrown; background-color:WhiteSmoke}
strong:active {color:WhiteSmoke; background-color:SaddleBrown}
strong img {display:inline}

address {text-align:center; padding-bottom:10px; font-size:1.4em; font-style:normal}

#Jazyk {position:absolute; right:2px; top:5px}
#Jazyk p {color:WhiteSmoke; position:relative; bottom:12px; font-size:1em}
#Jazyk img {display:inline}
#Jazyk a {border-radius:10px; padding-top:30px}
#Jazyk a:link {padding:5px; background-color:transparent}
#Jazyk a:hover {padding:5px; background-color:Chocolate}
#Jazyk a:active {padding:5px; background-color:Purple}

/* Videa */
video {
  display: block;
  margin: 1rem auto;
  height: auto;
}
@media screen and (max-width: 949px) {
  video {
    width: 90%;
  }
}
@media screen and (min-width: 950px) {
  video {
    width: 60%;
  }
}

/* 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 */