@font-face {
  font-family: "GillSansLight";
  src: url("../fonts/gill_sans_light.ttf");
  font-display: swap;
}
.__shadow {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.26);
}
.__grid_page {
  display: grid;
}
.__grid_page > * {
  margin: auto;
  padding: 20px;
}
.bottom_link {
  font-size: 12pt;
  text-decoration: none;
  color: #686868;
}
html {
  background-image: url("../img/podklad.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100%;
  background-position: 50% 50%;
}
header {
  text-align: center;
  display: block;
}
header nav {
  margin: 50px 0;
}
header nav .logo {
  width: 300px;
  height: 120px;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
header nav ul li {
  display: block;
}
header nav ul li a {
  display: inline-block;
  width: 100px;
  font-family: "GillSansLight", "Century Gothic", "Trebuchet MS", sans-serif;
  font-size: 20pt;
  color: #686868;
  text-decoration: none;
  transition: all 0.15s ease;
  font-weight: lighter;
  padding: 10px;
  margin: 10px;
}
header nav ul li a.fb_link {
  width: 40px;
  height: 40px;
  padding: 0;
  background: url("../img/fb.png"), url("../img/fb_purple.png");
  background-size: auto auto, 0 0;
}
header nav ul li a:hover {
  color: #911ccb;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.26);
  background: white;
}
header nav ul li a:hover.fb_link {
  background: white url("../img/fb_purple.png");
}
main {
  background-color: #eeeeee;
  box-sizing: content-box;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.26);
  font-family: "GillSansLight", "Century Gothic", "Trebuchet MS", sans-serif;
}
main section {
  display: block;
  min-height: 100vh;
  position: relative;
  top: -3px;
  margin: auto;
  text-align: center;
  display: grid;
  font-size: 18pt;
  padding-left: 10px;
  padding-right: 10px;
}
main section > * {
  margin: auto;
  padding: 20px;
}
main li {
  list-style: none;
}
main table {
  border-spacing: 0;
  border-collapse: collapse;
  padding: 40px;
}
main table td {
  border: 1px solid gray;
}
main .img_next {
  width: 100px;
  height: auto;
}
main .img_prev {
  width: 100px;
  height: auto;
  transform: rotate(180deg);
}
.purple_line {
  border-top: 3px solid #911ccb;
  position: sticky;
  top: 0;
  right: 0;
  z-index: 2;
}
.invisible_line {
  border-top: 3px solid transparent;
  position: relative;
  top: -3px;
}
h1 {
  font-family: "GillSansLight", "Century Gothic", "Trebuchet MS", sans-serif;
  letter-spacing: 2px;
  color: #a6a6a6;
  font-size: 40pt;
  padding: 0;
}
@media screen and (min-width: 960px) {
  header {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
  }
  header nav {
    margin: 0;
  }
  main {
    width: 50vw;
    position: absolute;
    right: 0;
  }
  main section {
    width: 400px;
    padding-left: 40px;
    padding-right: 40px;
  }
  main .section_wide {
    width: auto;
  }
  main #section_cenik {
    width: auto;
  }
  main #section_cenik table {
    width: 100%;
    box-sizing: border-box;
  }
}
@media screen and (max-height: 450px) {
  header {
    position: initial;
    align-items: initial;
    width: initial;
    height: initial;
  }
  main {
    width: 100vw;
    margin-top: 40px;
  }
  main section {
    margin-top: 40px;
  }
}
