#landingPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}
  
#landingPage h1 {
    font-size: clamp(2rem, 9vw, 6rem);
    margin: 0;
    text-align: center;
}
  
#landingPage h2 {
    margin: 0;
}

#landingPage p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    padding: 10px;
    margin: 0;
}
  
#socials {
    display: flex;
}
  
#socials ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding-inline-start: 0;
}
  
#socials ul img {
    width: 20px;
    height: 20px;
}
  
#pinpicture {
    width: 1.5rem;
    height: 1.5rem;
}
  
#pinpicture:hover {
    animation: pinBounce 0.6s linear;
}
  
@keyframes pinBounce {
    0%,
    100% {
      transform: translateY(0) scale(1.15);
    }
  
    50% {
      transform: translateY(-6px) scale(1.2);
    }
}
  
@keyframes bounce {
    0% {
      transform: translateY(0) rotate(90deg);
    }
  
    50% {
      transform: translateY(-25px) rotate(90deg);
    }
  
    100% {
      transform: translateY(0) rotate(90deg);
    }
}

.arrow {
    opacity: 0;
    position: absolute;
    top: 85%;
    left: 50%;
    transform-origin: 50% 50%;
    transform: translate3d(-50%, -50%, 0);
}

.arrow-first {
    animation: arrow-movement 2s ease-in-out infinite;
}
.arrow-second {
    animation: arrow-movement 2s 0.5s ease-in-out infinite;
}

.arrow:before,
.arrow:after {
    background: #000000;
    content: '';
    display: block;
    height: 3px; 
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
}

.arrow:before {
    transform: rotate(45deg) translateX(-23%);
    transform-origin: top left;
}

.arrow:after {
    transform: rotate(-45deg) translateX(23%);
    transform-origin: top right;
}

@keyframes arrow-movement {
    0% {
      opacity: 0;
      top: 80%;
    }
  
    70% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      top: 88%;
    }
}

  