.link-wrapper{
    width: 100%;
    height: 100vh;
    border: 2px solid rgb(205, 156, 50);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
}
.link-wrapper::-webkit-scrollbar {
    display: none;
}

.link-wrapper .list-head{
    /* border: 2px solid fuchsia; */
}

.link.hidden {
    display: none;
}

.link{
    width: 20%;
    height: fit-content;
    border: 2px solid rgb(86, 205, 50);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.link .rect{
    width: 50%;
    color: white;
    background-color: olivedrab;
}
.link-wrapper .arrow{
    width: fit-content;
    height: fit-content;
    border: 2px solid orangered;
    margin: 0 auto;
}

.link-wrapper .arrow-rect{
    width: 5px;
    height: 40px;
    margin: 0 auto;
    background-color: rgb(0, 255, 149);
}

.link-wrapper .arrow-triangle{
    width: 15px;
    height: 15px;
    background-color: aqua;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotateX(180deg);
}