
.columns {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.card {
    border-radius: 10px;
    border: 2px solid #acacb8;
    padding: 20px 40px;
    margin: 20px 0 5px;
}

#identity-buttons img {
    width: 40%;
}

#blinkies img {
    width: 40%;
}

#link-buttons img {
    width: auto;
    box-shadow: 3px 1px 3px 1px rgba(0,0,0,0.2);
}

.center-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-card button {
    background-color: #acacb8;
}

.columns div {
    width: 100%;
}

.more {
    height: 200px;
}

.wrap-columns {
    column-count: 2;
}

.scroll-column {
    overflow-y: scroll;
    margin-right: 20px;
}

/* Width */
.scroll-column::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.scroll-column::-webkit-scrollbar-track {
    background: none;
}

/* Thumb */
.scroll-column::-webkit-scrollbar-thumb {
    background: #acacb8;
    border-radius: 5px;
}

@media only screen and (max-width: 600px) {
    .columns {
        flex-direction: column;
    }

    .more {
        height: 500px;
    }
   
}