#fixed{
    position: fixed;
    top: 27%;
    right: 2%;
    z-index: 1000;
}

#fixed ul{
    display: flex;
    flex-direction: column;
    gap: 18px;
    color:white;
    font-family: 'Pretendard-SemiBold', sans-serif;
    font-size: 16px;
}

#fixed ul li{
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:20px;
    width:100px;
    height: 105px;
    cursor: pointer;
}

#fixed ul li:nth-child(1){
    background-color: var(--darkblue);
}

#fixed ul li:nth-child(2){
    background-image: url(../images/fixed_naver_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#fixed ul li:nth-child(3){
    background-color:#ffde00;
    color:#231916;
}