main{
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    gap: 10px;
}

.backeffect{
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    &::after{
        content: "";
        display: flex;
        height: 100%;
        width: 100%;
        background-image: url(../resources/backeffect.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position-x: center;
        --mask-value: 60%;
        mask-image: linear-gradient(transparent 0%, white calc(100% - var(--mask-value)), white var(--mask-value), transparent 100%);
    }
}

.fronteffect{
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    &::after{
        content: "";
        display: flex;
        height: 100%;
        width: 100%;
        background-image: url(../resources/fronteffect.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position-x: center;
        --mask-value: 60%;
        mask-image: linear-gradient(transparent 0%, white calc(100% - var(--mask-value)), white var(--mask-value), transparent 100%);
        background-position: center;
    }
}

.background{
    display: flex;
    position: absolute;
    height: 80%;
    width: 80%;
    background-image: url(../resources/background2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: .3;
}

.title{
    display: flex;
    height: 100px;
    width: 600px;
    background-image: url('../resources/stafflabel.png');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    user-select: none;

    /*
    gap: 1vh;
    box-sizing: border-box;
    font-size: 180px;
    font-family: darkmode;
    z-index: 2;
    
    & .left{
        background: linear-gradient(140deg, white, white);
    }
    & .right{
        background: linear-gradient(140deg, red, red);
    }

    & .left, .right{
        user-select: none;
        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
        color: transparent;
    }*/
}

.team{
    display: grid;
    height: fit-content;
    width: fit-content;
    box-sizing: border-box;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr);
    z-index: 2;
}

@media (max-width: 1050px) {
    .team {
        grid-template-columns: repeat(2, 1fr);
    }
}

.member{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 180px;
    border: 1px solid red;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(1vh);
    /*
    background-color: black;
    border: 2px solid red;
    height: 25vh;
    aspect-ratio: 1;
    border-radius: 50%;
    */
}

.profile-picture{
    position: relative;
    height: 50%;
    aspect-ratio: 1;
    border: 1px solid red;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: black;
    background-position: center;
    background-size: cover;
    --cover-opacity: 1;

    &::after{
        content: "";
        display: flex;
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: black;
        border-radius: 50%;
        opacity: var(--cover-opacity);
        transition: all .4s ease-in-out;
    }
}

.name{
    color: white;
    font-family: Arial;
    font-size: 20px;
}

.role{
    color: red;
    font-family: Arial;
    font-size: 16px;
}

.profile-socials{
    display: flex;
    height: 20%;
    width: 100%;
    justify-content: space-around;

    & a{
        display: flex;
        height: 60%;
        aspect-ratio: 1;
        background-color: white;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: cover;
        transition: background-color var(--transition-time) ease-in-out;

        &:hover{
            background-color: red;
        }
    }

    & .twitch{
        mask-image: url(../resources/svgs/twitch-182-svgrepo-com.svg);
    }
    & .youtube{
        mask-image: url(../resources/svgs/youtube-168-svgrepo-com.svg);
    }
    & .instagram{
        mask-image: url(../resources/svgs/instagram-svgrepo-com.svg);
    }
}