@import url("https://use.typekit.net/gou8nxh.css");
/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
:root {
  --background: #ffffff;
  --foreground: #171717;
  --font-arial-narrow: "Arial Narrow", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-arial-narrow);
  -webkit-font-smoothing: antialiased;
}
body ::selection {
  background-color: black;
  color: white;
}
a {
  text-decoration: none;
  color: inherit;
}
/* Home page styles */
.home-main {
  position: relative;
  overflow-y: hidden;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-link-wrapper {
  overflow: hidden;
  position: absolute;
  z-index: 10;
}
.home-link {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  font-size: 6rem;
  color: black;
  font-weight: bold;
}
.home-video {
  position: absolute;
  min-width: 100%;
  object-fit: cover;
  min-height: 100svh;
}
.home-video-mobile {
  display: block;
}
.home-video-desktop {
  display: none;
}
@media (min-width: 640px) {
  .home-video-mobile {
    display: none;
  }
  .home-video-desktop {
    display: block;
  }
}
/* About page styles */
.about-main {
  padding: 1.25rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .about-main {
    padding: 2rem;
    padding-bottom: 4rem;
  }
}
.about-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .about-nav {
    flex-direction: column;
  }
}
.about-nav-link {
  text-transform: uppercase;
  font-weight: bold;
}
.about-nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.download-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: bold;
}
.download-link {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.download-size {
  font-weight: normal;
}
.about-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .about-content {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.about-header {
  grid-column-start: 6;
  grid-column-end: 12;
  padding-top: 2.5rem;
}
.about-header-overflow {
  overflow: hidden;
}
.about-title {
  font-size: 3.75rem;
  font-weight: bold;
  transform-origin: right;
  line-height: 1;
}
@media (min-width: 640px) {
  .about-title {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .about-title {
    font-size: 6rem;
  }
}
.about-article {
  max-width: 30rem;
  grid-column-start: 6;
  grid-column-end: 12;
  padding-top: 5rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.underlined {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.email-link:hover,
.social-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.social-link-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.social-link-jakost {
  text-decoration: underline;
  text-underline-offset: 2px;
}