@import url(https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&family=Space+Grotesk:wght@300..700&display=swap);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}
html {
  font-size: calc(1vw / 14.4);
}
body {
  font-family: 'PT Root UI', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
}
main {
  height: 100%;
  display: flex;
  align-items: flex-end;
  width: 70%;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(209, 209, 209, 1) 0%,
    rgb(184, 187, 209) 20%,
    rgba(207, 207, 207, 1) 47%,
    rgb(209, 213, 231) 77%,
    rgba(224, 224, 224, 1) 100%
  );
  /* background: radial-gradient(circle at 100% 0%, #b6cde8, transparent 60%),
    linear-gradient(65deg, #dfdfdf, rgb(190, 190, 190) 50%); */
  border-radius: 30rem;
  position: relative;
}
section {
  position: relative;
  height: 100%;
}
footer {
  width: 100%;
  display: flex;
  background-color: #cccccc2f;
  border-radius: 60rem 60rem 0 0;
  gap: 20rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 20rem 20rem;
  margin-bottom: 0;
}
footer > * {
  width: 4%;
}
footer img {
  width: 100%;
}
.sasart {
  border-radius: 100%;
}
.arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 10%;
  background-image: url(images/40b00b2f35cb96abc7de.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 100;
  transition: background-image 1s ease;
}
.arrow:hover {
  background-image: url(images/4f71b16ad4e14a5bcd77.svg);
  transition: background-image 1s ease;
}
#poster {
  width: 50%;
  border-radius: 30rem 0 0 30rem;
  overflow: hidden;
}
#description {
  width: 50%;
  height: 100%;
  /* padding: 20rem; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20rem;
}
#description > h1,
#description > p {
  padding: 0 20rem;
}
#description h1 {
  font-size: 30rem;
  font-weight: 500;
  padding-top: 20rem;
}
#description p {
  font-size: 16rem;
}
#description .role {
  font-size: 14rem;
  color: #555;
  transform: translateY(16rem);
}
blockquote {
  width: 96%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1rem solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8rem 32rem rgba(0, 0, 0, 0.1);
  border-radius: 20rem;
  padding: 40rem;
  position: relative;
  z-index: 2;
  margin: 30rem auto 0;
}
blockquote p {
  line-height: 1.3;
}
blockquote::before {
  font-family: 'Passion One', sans-serif;
  font-weight: 400;
  content: '"';
  font-size: 120rem;
  position: absolute;
  top: -10%;
  -webkit-text-stroke: 1rem #efefef;
  color: rgba(255, 255, 255);
  text-shadow: 4rem 2rem 5rem rgba(100, 100, 100, 0.5);
}
blockquote p:nth-of-type(2) {
  text-align: right;
  color: #69677c;
  margin-top: 10rem;
}
@media screen and (max-width: 1279px) {
  #description h1 {
    font-size: 40rem;
  }
  #description p {
    font-size: 22rem;
  }
  .blockquote::before {
    top: -6%;
  }
}
@media screen and (max-width: 768px) {
  body {
    align-items: flex-start;
  }
  main {
    flex-direction: column;
    width: 100%;
    border-radius: 0;
  }
  #poster {
    border-radius: 0 0 70rem 70rem;
  }
  section,
  #poster,
  #description {
    width: 100%;
  }
  #description > h1,
  #description > p {
    padding: 0 30rem;
  }
  #description h1 {
    font-size: 70rem;
    padding-top: 30rem;
  }
  #description p {
    font-size: 40rem;
  }
  #description .role {
    font-size: 30rem;
    transform: translateY(10rem);
  }
  .arrow {
    left: 0;
    width: 20%;
    height: 20%;
    background-image: url(images/83ebb5e3f44646517b4d.svg);
  }
  .arrow:hover {
    background-image: url(images/d209b37a1f119a4a5b34.svg);
  }
  blockquote {
    padding: 60rem 40rem 30rem;
  }
  blockquote::before {
    font-size: 190rem;
  }
}

@media screen and (max-width: 500px) {
  #poster {
    border-radius: 0 0 70rem 70rem;
  }
  #description {
    margin-top: 20rem;
    gap: 60rem;
  }
  #description > h1,
  #description > p {
    padding: 0 60rem;
  }
  #description h1 {
    font-size: 110rem;
    padding-top: 60rem;
  }
  #description p {
    font-size: 80rem;
  }
  #description .role {
    font-size: 50rem;
    transform: translateY(40rem);
  }
  blockquote {
    padding: 100rem;
    border-radius: 60rem;
  }
  blockquote::before {
    font-size: 340rem;
    top: -4%;
    text-shadow: 8rem 8rem 10rem rgba(100, 100, 100, 0.3);
  }
  blockquote p:nth-of-type(2) {
    margin-top: 40rem;
  }
  footer > * {
    width: 10%;
  }
  footer {
    gap: 40rem;
  }
}

#poster {
  width: calc(1190rem / 2.3);
  height: calc(1660rem / 2.3);
  background-image: url(images/604e13d932c48889894b.webp);
  background-size: cover;
  position: relative;
}
article {
  width: 100%;
  height: 100%;
}
.pixel1 {
  width: calc(404rem / 8);
  height: calc(154.6rem / 16);
  background-image: url(images/054352b114995676ffa8.png);
  background-size: calc(404rem / 8) calc(154.6rem / 8);
  position: absolute;
  top: 55%;
  left: 30%;
  animation: pixel1 1s steps(1) infinite;
}
.pixel2 {
  width: calc(404rem / 8);
  height: calc(154.6rem / 16);
  background-image: url(images/054352b114995676ffa8.png);
  background-size: calc(404rem / 8) calc(154.6rem / 8);
  position: absolute;
  top: 55%;
  left: 50%;
  animation: pixel1 1s steps(1) infinite reverse;
}
.pixel3 {
  width: calc(606rem / 8);
  height: calc(370rem / 16);
  background-image: url(images/3d1fe325a7c0e3843232.png);
  background-size: calc(606rem / 8) calc(370rem / 8);
  position: absolute;
  top: 69%;
  left: 64%;
  animation: pixel3 1s steps(1) infinite reverse;
}
.pixel4 {
  width: calc(354rem / 8);
  height: calc(884rem / 16);
  background-image: url(images/605a8a3dffa448788e6b.png);
  background-size: calc(354rem / 8) calc(884rem / 8);
  position: absolute;
  top: 67%;
  left: 81%;
  animation: pixel4 1s steps(1) infinite reverse;
}
.traktor {
  display: block;
  position: absolute;
  top: 51%;
  left: 37%;
  width: 16%;
}
.punktir {
  width: 4%;
  height: 44%;
  background-image: url(images/bf22d109cd8fa6fd0131.png);
  background-size: contain;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
}
.punktir1 {
  left: 30%;
}
.punktir2 {
  left: 52%;
}
.column {
  width: 33.3%;
}
.punkt {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #111;
  position: relative;
  animation: punkt 8s infinite ease-in-out alternate;
}
.punkt1 {
  animation-delay: -7s;
}
.punkt2 {
  animation-delay: -12s;
}
.punkt3 {
  animation-delay: -1s;
}
.punkt4 {
  animation-delay: -9s;
}
.punkt5 {
  animation-delay: -24s;
}
.punkt6 {
  animation-delay: -30s;
}
.punkt7 {
  animation-delay: -5s;
}
.punkt8 {
  animation-delay: -19s;
}
.punkt9 {
  animation-delay: -2s;
}
.punkt10 {
  animation-delay: -13s;
}
.punkt11 {
  animation-delay: -3s;
}
.punkt12 {
  animation-delay: -14s;
}
.column:nth-of-type(2) .punkt {
  margin: 0 auto;
}
.column:nth-of-type(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.circle {
  width: 20%;
  display: block;
  position: absolute;
  animation: circle 10s infinite ease-in-out;
}
.circle1 {
  top: 16%;
  left: 16%;
  animation-delay: -2s;
}
.circle2 {
  top: 28%;
  left: 28%;
  animation-delay: -4s;
}
.circle3 {
  top: 24%;
  left: 46%;
  animation-delay: -6s;
}
.circle4 {
  top: 38%;
  left: 50%;
}
@keyframes circle {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(0.5);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}
/* .circle1 {
  animation: circle1 10s ease-in infinite;
}
.circle2 {
  animation: circle2 10s ease-in 2s infinite;
}
@keyframes circle1 {
  0% {
    top: -20%;
    left: 20%;
    transform: rotate(0);
  }
  50% {
    top: 42%;
    left: 20%;
    transform: rotate(-270deg);
  }
  100% {
    top: 50%;
    left: -20%;
    transform: rotate(-490deg);
  }
}
@keyframes circle2 {
  0% {
    top: -20%;
    left: 40%;
    transform: rotate(0);
  }
  50% {
    top: 42%;
    left: 40%;
    transform: rotate(-270deg);
  }
  100% {
    top: 50%;
    left: -20%;
    transform: rotate(-490deg);
  }
} */
@keyframes punkt {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes pixel1 {
  0% {
    background-position-y: 0;
  }
  50% {
    background-position-y: calc(154.6rem / 16);
  }
}
@keyframes pixel3 {
  0% {
    background-position-y: 0;
  }
  50% {
    background-position-y: 23.125rem;
  }
}
@keyframes pixel4 {
  0% {
    background-position-y: 0;
  }
  50% {
    background-position-y: calc(884rem / 16);
  }
}
@media screen and (max-width: 1279px) {
  main {
    width: 96%;
  }
  #poster {
    width: calc(1190rem / 1.6);
    height: calc(1684rem / 1.6);
  }
  .traktor {
    top: 53%;
    left: 32%;
    width: 10%;
  }
  .punktir2 {
    left: 40%;
  }
  .punkt {
    width: 7rem;
    height: 7rem;
  }
}

@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }
  #poster {
    width: 100%;
    height: 141.42vw;
  }
  .pixel2 {
    left: 40%;
  }
}

