.floating {
    position: fixed;
    bottom: 60px; right: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 98;
}

.floating a {
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 20px;
    box-shadow: 6px 6px 18px rgba(0, 0, 0, .25);
    cursor: pointer;
}

.instaBtn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.instaBtn i {
    font-size: 32px;
}

.kakaoBtn {
    background-color: #f9e108;
}

.kakaoBtn i {
    color: #3d2324;
    font-size: 32px;
}

.homeBtn {
    background-color: #C2996C;
}

.homeBtn i {
    color: #fff;
    font-size: 32px;
}


/*==================================================*/
@media (max-width: 550px) {
    .floating {
        bottom: 40px; right: 40px;
        gap: 10px;
    }

    .floating a {
        width: 44px;
        height: 44px;
        line-height: 44px;
        border-radius: 17px;
    }

    .instaBtn i {
        font-size: 28px;
    }
    
    .kakaoBtn i {
        font-size: 28px;
    }
}