html,
body {
    margin: 0;
    padding: 0;
    background: #000;
}

.landing-link {
    display: block;
}

.landing-link img {
    display: block;
    width: 100vw;
    height: auto;
}
.scroll-arrow {
    display: inline-block;
    transform-origin: center;
    animation: gentlePulse 2.8s ease-in-out infinite;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.landing-container {
    position: relative;
    display: inline-block;
}

.landing-link img {
    display: block;
    width: 100%;
    height: auto;
}

.curved-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
