﻿body {
    background-color: #000;
    margin: 0;
    overflow: hidden;
}

.img {
    cursor: pointer;
}

#divArm {
    text-align: center;
    padding-top: 40px;
    border-bottom: 1px solid #484848;
}

.backgroundlogo {
    background-image: url('/Image/logo-m.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 46% auto;
    height: 200px;
    position: relative;
    top: 13px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none outside none;
    display: inline-block
}

.content {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(36, 28, 49, 0.2);
}

#divArm ul{
    margin-bottom:30px
}

.footertxt {
    color: #eaeaea;
    font-size: 12px;
    text-align: center;
    padding: 10px 45px;
}

.background {
    background-image: url('/Image/bi.jpg'); /* Replace 'your_image_url.jpg' with the URL of your image */
    background-repeat: repeat-x;
    width: 200%; /* Adjust the width based on your preference */
    height: 496px;
    animation: moveBackground 50s linear infinite; /* Adjust the animation duration (10s in this case) */
}

@keyframes moveBackground {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
