@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: revert;
    }
}

body {
    font-family: "Outfit", sans-serif;
    border: 10px solid white;
}

.custom-arrow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    font-size: 2rem;
    color: #fff;
    z-index: 10;
    text-decoration: none;
    animation: moveArrow 10s infinite;
    width: 50px;
    height: 50px;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s;
}

@keyframes moveArrow {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -20px);
    }
}


.a1 {
    border: 1px solid #d40202;
    background: transparent;
    color: #d40202;
    padding: 8px 25px;
    border-radius: 3px;
}


.a2 {    background-color: #181c21;}

.a3 {
    font-weight: 200;
    font-size: 15px;
}

.a4 {    font-size: 2.5rem;
    color: #d60300;
    font-weight: 900;
    text-align: left;}

    .a5 {font-size: 2rem;}

.divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}