p {
    font-size: 18px;
}

.boxFrame04 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.gotodiv {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.gotodiv-img,
.gotodiv-img img {
    width: 350px;
    animation: pulse2 2s infinite;
}

@keyframes pulse2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}