body {
    background-color: #111322;
}

/* 1. 이미지에 애니메이션 속성 적용 */
.img_move {
    /* 애니메이션이름 | 지속시간 | 가속도(smooth) | 무한반복 | 왕복 */
    animation: gentleFloat 1.5s ease-in-out infinite alternate;
    width: 200px;
}

/* 2. 움직임(키프레임) 정의 */
@keyframes gentleFloat {
    0% {
        /* 초기 위치: 제자리, 회전 없음 */
        transform: translateY(0) rotate(0deg);
    }
    100% {
        /* 100% 위치: 위로 12px 이동, 오른쪽으로 1.5도 회전 */
        transform: translateY(-12px) rotate(1.5deg);
    }
}


#Whale_Long_Short {
    margin-top: 40px;
}

.Long_Short_Title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: -120px;

}
.Long_Short_Title div {
    padding: 0px 20px;
}
.Long_Short_Title .L {
    color: #00ff00;
}
.Long_Short_Title .N {
    font-size: 30px;
}
.Long_Short_Title .W {
    font-size: 100px;
    border-bottom: 1px solid #2a3458;
}
.Long_Short_Title .R {
    color: #ff0000;
}
.Long_Short_Block {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0px 40px;
    padding: 30px 0px;
}
#cnt_buy {
    color: #00ff00;
    font-size: 120px;
    font-weight: 700;
    padding: 0px 20px;
}
#cnt_sell {
    color: #ff0000;
    font-size: 120px;
    font-weight: 700;
    padding: 0px 20px;
}
.Long_Short_Block img {
    width: 500px;
}
.Whale_Bad img {
    scale: -1 1;
}
.Long_Short_vs {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}
.Long_Short_Total {
    display: flex;
    justify-content: center;
    margin-top: -100px;
}
.Long_Short_Total span {
    width: 400px;
    background: #040b1b;
    border: 1px solid #2a3458;
    border-radius: 4px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    padding: 0px 0px 5px 0px;
    letter-spacing: 5px;
}

