@font-face {
  font-family: "Liberation Sans";
  src: url("assets/fonts/LiberationSans-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Liberation Sans";
  src: url("assets/fonts/LiberationSans-Italic.ttf");
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "Liberation Sans";
  src: url("assets/fonts/LiberationSans-Bold.ttf");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Liberation Sans";
  src: url("assets/fonts/LiberationSans-BoldItalic.ttf");
  font-style: italic;
  font-weight: 700;
}

html, :root {
  scroll-behavior: smooth;
  font-family: "Liberation Sans", Arial, Helvetica, sans-serif;
  font-size: 1.4vw;
}

@media screen and (max-width: 1000px) {
  html, :root {
    font-size: 2vw;
  }
}
@media screen and (max-width: 750px) {
  html, :root {
    font-size: 3vw;
  }
}
@media screen and (max-width: 450px) {
  html, :root {
    font-size: 3.5vw;
  }
}

body {
  margin: 0;
  background-color: #fafafa;
  background-image: url("assets/svg/lp_line_5.png");
  background-size: 100% auto;
  background-position: 100% 0;
  background-repeat: no-repeat;
  /* position: relative; */
  /* min-height: 400dvh; */
  /* aspect-ratio: 1 / 2; */
  height: min-content;
  width: 100vw;
  /* overflow: hidden; */

}
#svg-container {
  max-width: 100dvw;
  overflow-x: hidden;
  width: 100%;
  /* max-height: 100%; */
  position: absolute;
  top: 0;
}

svg {
  width: 100%;
  margin: 0;
  position: relative;
  top: 0;
  
}
svg text {
  fill: #494949;
  /* text-transform: uppercase; */
  font-weight: 700;
  font-size: 16px;
  /* filter: blur(.2px); */
}

a {
  fill: #2a7fff;
  color: #2a7fff;
}

#title {
  text-transform: uppercase;
  /* mask: url("assets/svg/lp_line_4.svg#path15610") alpha; */
}

.images-container {
  /* padding: 0 0 0 .5em;
  width: calc(100% - .5em); */
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.images-container img {
  margin: 0 auto;
  /* mix-blend-mode: darken; */
}

.images-container i.additional-info {
  margin-top: 0;
  margin-inline: auto;
  margin-bottom: 1rem;
}

@media screen and (max-width: 750px) {
  body {
    background-size: 200% auto;
  }
  svg {
    width: 200%;
    transform: translateX(-50%);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

button {
  background-color: #ff7f2a;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 1.5em;
  padding: .5em .7em;
  cursor: pointer;
  margin: .4em;
  filter: url(#filter-big-sizes);
  font-family: inherit;
}

main {
  position: relative;
  color: #333;
  top: 170dvw;
  /* font-weight: 700; */
  line-height: 1.2;
  margin: 0.4em 0;
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1.218fr 1fr;
  grid-column-gap: 2.7dvw;
}
main p, main h2, main h3, .images-container i, .filter-img {
  filter: url(#filter-big-sizes);
}


h2 {
  /* grid-column: span 2; */
  font-size: 2.15rem;
  /* max-width: 22rem; */
  /* text-align: center; */
  width: 100%;
  letter-spacing: -0.02em;
  margin: 0 0 .5em 1rem;
  text-transform: uppercase;
  /* background-color: #d35f5f; */
  line-height: .7;
  padding-top: .15em;
  white-space: nowrap;
  text-overflow: clip;
}

main p {
  max-width: 22rem;
  font-size: .7rem;
  font-weight: 700;
  hyphens: auto;
  hyphenate-limit-chars: 7 3;
  margin: .5em auto;
}

img {
  max-width: calc(100% - 2rem);
  align-self: end;
  margin: 1em 1rem;
}

i.additional-info {
  display: inline;
  /* float: right; */
  /* width: 100%; */
  font-size: .7rem;
  margin: 0;
  line-height: 1.1;
  font-weight: 400;
  color: #333;
}

main h3 {
  max-width: 25rem;
  margin: 0 auto;
  font-size: 1em;
  font-style: italic;
}

main .credits {
  font-size: .7rem;
  align-self: end;
  font-weight: 700;
  margin-top: 3em;
}

@media screen and (max-width: 1920px) {  
  main p, main h2, main h3,.images-container i, .filter-img, button {
    filter: url(#filter-small-sizes);
  }
}

@media screen and (max-width: 750px) {
  main {
    top: 340dvw;
    grid-template-columns: 1fr;
  }

  main p i.additional-info, main .credits, main p {
    font-size: .75rem;
  }

  h2, img {
    /* max-width: 100dvw; */
  }

  main p, main h3, main h2 {
    margin-inline: calc(12dvw + .5rem) 0;
    max-width: calc(88dvw - .5rem);
  }
}