[v-cloak] {
    display: none !important;
}
.bottom-right {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bottom-right img {
    width: 70px;
    height: 70px;
    height: auto;
}

body {
    scroll-behavior: smooth !important;
    background-position: center top;
    background-size: auto;
    position: relative;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    overflow: hidden;
    background-repeat: repeat-y;
    animation: scrollBackground 55s linear infinite;
}

@keyframes scrollBackground {
    from {
        background-position-y: 0;
    }

    to {
        background-position-y: 100%;
    }
}