.bottom-right {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bottom-right img {
    width: 80px;
    height: auto;
}

body {
    margin: 0;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url('img/ct.jpg') no-repeat center center fixed;
    background-size: cover;
}

@keyframes scrollBackground {
    from {
        background-position-y: 0;
    }

    to {
        background-position-y: 100%;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceSide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }
}

@keyframes bounceSideR {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.download-area {
    text-align: center;
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

.download-hint {
    color: red;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 8px;
    animation: pulse 1.5s infinite;
}

.arrow {
    font-size: 2rem;
    color: red;
    display: block;
}

.arrow-top {
    animation: bounce 1.2s infinite;
}

.arrow-left {
    position: absolute;
    top: 40%;
    left: -50px;
    animation: bounceSide 1.2s infinite;
}

.arrow-left {
    position: absolute;
    top: 40%;
    left: -20px;
    animation: bounceSide 1.2s infinite;
}

.arrow-right {
    position: absolute;
    top: 40%;
    right: -20px;
    animation: bounceSideR 1.2s infinite;
}

.arrow-breath {
    font-size: 2.5rem;
    color: red;
    text-align: center;
    animation: breath 1.8s infinite;
}

.arrow-breath:nth-child(2) {
    animation-delay: 0.3s;
}

.arrow-breath:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes breath {

    0%,
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(8px);
    }
}