.socials-container-list-0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/*====================================================================================================================*/

.one-social-column-0 {
    width: 32%;
    height: 100%;
}

/*====================================================================================================================*/

.one-social-cell-0 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 33.3%;
    width: 100%;
}

/*====================================================================================================================*/

.osc-active-0 {
    border: 2px solid black;
    transition: scale 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    display: none;
    transform: translateX(-100%);
    animation: osc-active-0 0.4s ease-in forwards;
}

@keyframes osc-active-0 {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
        backdrop-filter: blur(10px);
        transform: translateX(0);
    }
}

.osc-active-0:hover {
    scale: 1.05;
    box-shadow: 0 0 20px rgba(70, 70, 70, 0.5);
}

/*====================================================================================================================*/

.social-link-0 {
    text-decoration: none;
}

/*====================================================================================================================*/

.social-name-0 {
    user-select: none;
}

/*====================================================================================================================*/

.social-image-0 {
    width: 67%;
}

/*====================================================================================================================*/

.discord-username-0::selection {
    background: #FF0099;
}