/* Resetowanie marginesów i paddingów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "acumin-pro", sans-serif;
  color: black;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 800px;
  padding: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 90%;
  padding-bottom: 30px;
}


h1 {
  font-size: 2.5rem;
  margin: 0px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
}

p {
  font-size: 1.5rem;
  line-height: 1;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  max-width: 500px;
  font-style: normal;
}

span {
  font-size: 1rem;
  position: absolute;
  bottom: 20px;
  line-height: 1;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
}



body {
    font-family: 'NeueMontreal';
    cursor: none;
}

.custom-cursor {
  width: 0.5rem;
  height: 0.5em;
    border-radius: 100%;
    background-color: black;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 5;
    display: none;
  }


  .hover {
    width: 1.25rem;
    height: 1.25rem;
    mix-blend-mode:color-burn;

  }

.noise {

  
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 7;


  &::after {
    content: "";
    width: calc(100% + 20rem);
    height: calc(100% + 20rem);
    background-position: 50%;
    position: absolute;
    left: -10rem;
    top: -10rem;
    background-image: url('noise.png');
    will-change: transform;
    -webkit-animation: noiseAnimation 1s steps(2) infinite;
    animation: noiseAnimation 1s steps(2) infinite;
  }
}

@keyframes noiseAnimation {
  0% {
      transform: translate3d(0,9rem,0)
  }

  10% {
      transform: translate3d(-1rem,-4rem,0)
  }

  20% {
      transform: translate3d(-8rem,2rem,0)
  }

  30% {
      transform: translate3d(9rem,-9rem,0)
  }

  40% {
      transform: translate3d(-2rem,7rem,0)
  }

  50% {
      transform: translate3d(-9rem,-4rem,0)
  }

  60% {
      transform: translate3d(2rem,6rem,0)
  }

  70% {
      transform: translate3d(7rem,-8rem,0)
  }

  80% {
      transform: translate3d(-9rem,1rem,0)
  }

  90% {
      transform: translate3d(6rem,-5rem,0)
  }

  to {
      transform: translate3d(-7rem,0,0)
  }
}
