/* source-sans-3-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v18-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-3-v18-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3';
  background: #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
}

/* Tło */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg.jpg") no-repeat center center/cover;
  z-index: -1;
}
.video-wrap {
  display: flex;
  justify-content: center;
}
.video-wrap iframe {
  margin: auto;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 300px;
}
@media only screen and (max-width: 600px) {
  .logo img {
    max-width: 200px;
  }
}
.tagline img {
  width: 100%;
  max-width: 297px;
  margin-top: -8px;
  position: relative;
  z-index: 9;
}
footer {
  margin-top: 20px;
}
.footer-logo img {
  width: 60px;
  height: auto;
  margin: 0 auto;
}
.links {
  margin: 10px 0;
}
.links a {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}
.links a:hover {
  text-decoration: underline;
}
.copyright {
  padding-bottom: 60px;
  font-size: 12px;
}
