body {
    background-color: #00FF00; /* 녹색 배경 */
    overflow: hidden;
}

.goat {
    width: 300px; /* 염소 크기 */
    transition: transform 5s ease-in-out; /* 천천히 움직임 */
    z-index: 100;
}

.banner {
    width: 400px !important;
    transition: transform 5s ease-in-out; /* 천천히 움직임 */
    z-index: 100;
}

.container-lg {
    overflow: visible !important;
}

@media (max-width: 767px) {
    .goat {
        width: 150px; /* 염소 크기 */
        transition: transform 5s ease-in-out; /* 천천히 움직임 */
        z-index: 100;
    }
    
    .banner {
        width: 200px !important;
        transition: transform 5s ease-in-out; /* 천천히 움직임 */
        z-index: 100;
    }
}