@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');


:root{
    --atlatszo-fekete: #00000080;
    --atlatszo-feher: rgba(255, 255, 255, 0.2);
    
    --box-szin: rgba(132, 139, 200, 0.18);
    --box-shadow: 0 1rem 2rem var(--box-szin);
    --box-szin2: rgba(255, 255, 0, 0.719);
    --box-shadow2: 0 1rem 2rem var(--box-szin2);
    --box-szin3: rgba(255, 255, 255, 0.5);
    --box-shadow3: 0 1rem 2rem var(--box-szin3);
}


.introductionContainer {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 90%;
    overflow: hidden;
    height: auto;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.membersH1 {
    position: relative;
    font-size: 40px;
    text-align: center;
    bottom: 2rem;
    letter-spacing: .7rem;
    font-family: sans-serif;
    font-weight: 800;
}

.memberCsik1 {
    width: 80%;
    height: 2px;
    position: absolute;
    left: 10%;
    background-color: var(--atlatszo-fekete);
    background: white;
}

.slider {
    display: flex;
    position: relative;
    width: 100%;
}

.person {
    margin-left: 5%;
    margin-top: 3rem;
    flex: 0 0 33.3333%;
    box-sizing: border-box;
}

.person:first-child {
    margin-left: 0;
}

.avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 30%;
    margin-right: 4px;
}

.bio, .username {
    margin: 0;
    font: 18px monospace;
    font-weight: bold;
}

.username {
    position: relative;
    top: 2px;   
    font-size: 16px;
    color: transparent;
}

.person:nth-child(1) .username, .person:nth-child(2) .username{ /* Tulajdonos szín */
    background-image: linear-gradient(90deg, rgb(230, 11, 11), rgb(151, 26, 26));
    background-clip: text;
}

.person:nth-child(3) .username{ /* Vezetőség szín*/
    background-image: linear-gradient(90deg, rgb(255, 187, 0), rgb(196, 111, 0));
    background-clip: text;
}

.person:nth-child(4) .username{ /* WebDeveloper szín*/
    color: transparent;
    background: linear-gradient(90deg, rgb(255, 182, 182), rgb(255, 0, 0));
    -webkit-background-clip: text;
    background-clip: text;
    animation: textSzivarvany 4s infinite;
}
@keyframes textSzivarvany {
    0% { background: linear-gradient(90deg, rgb(255, 182, 182), rgb(255, 0, 0)); -webkit-background-clip: text; background-clip: text; }
    14% { background: linear-gradient(90deg, rgb(255, 210, 128), rgb(255, 166, 0)); -webkit-background-clip: text; background-clip: text; }
    28% { background: linear-gradient(90deg, rgb(255, 255, 35), rgb(121, 121, 14)); -webkit-background-clip: text; background-clip: text; }
    42% { background: linear-gradient(90deg, rgb(128, 255, 128), rgb(0, 128, 0)); -webkit-background-clip: text; background-clip: text; }
    57% { background: linear-gradient(90deg, rgb(128, 128, 255), rgb(0, 0, 255)); -webkit-background-clip: text; background-clip: text; }
    71% { background: linear-gradient(90deg, rgb(191, 128, 255), rgb(75, 0, 130)); -webkit-background-clip: text; background-clip: text; }
    85% { background: linear-gradient(90deg, rgb(238, 182, 255), rgb(148, 0, 211)); -webkit-background-clip: text; background-clip: text; }
    100% { background: linear-gradient(90deg, rgb(255, 182, 182), rgb(255, 0, 0)); -webkit-background-clip: text; background-clip: text; }
}

.person:nth-child(5) .username, .person:nth-child(6) .username{ /* Építész szín*/
    background-image: linear-gradient(90deg, rgb(95, 231, 197), rgb(28, 158, 126));
    background-clip: text;
}

.rang {
    position: relative;
    color: rgb(133, 133, 133);
    margin: 5px 5px 0 ;
    font-size: 12px;
    font: 800 12px sans-serif;
}

.profile {
    display: flex;
    position: relative;
    flex-direction: row;
    background-color: var(--atlatszo-fekete);
    border-radius: 7px 12px 10px 15px;
    padding: 7px;
    width: 82%;
}

.bio {
    width: 80%;
    background-color: var(--atlatszo-feher);
    padding: 10px;
    font-size: 16px;
    box-shadow: var(box-shadow);
    border-radius: 17px 10px 5px 10px;
}

.prevnext {
    display: flex;
    justify-content: center;
    position: relative;
    top: 3rem;
    gap: 1rem;
}

.prev, .next {
    cursor: pointer;
    background-color: var(--atlatszo-feher);
    color: black;
    border: none;
    font-size: 26px;
    padding: 0.2rem 3rem;
}

.prev {
    border-radius: 100px 5px 5px 100px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.next {
    border-radius: 5px 100px 100px 5px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.prev i {
    position: relative;
    left: 0.3rem;
}

.next i {
    position: relative;
    right: 0.3rem;
}

.prev:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.prev:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
}

.next:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.next:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
}

.nyil1 {
    position: relative;
    transition: left 0.1s;
}

.avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 30%;
    margin-right: 4px;
}

.bio, .username {
    margin: 0;
    font: 18px monospace;
    font-weight: bold;
}

.username {
    position: relative;
    top: 2px;   
    font-size: 16px;
}

.profile {
    display: flex;
    flex-direction: row;
    background-color: var(--atlatszo-fekete);
    border-radius: 7px 12px 10px 15px;
    padding: 7px;
    width: 82%;
}

.bio {
    width: 80%;
    background-color: var(--atlatszo-feher);
    padding: 10px;
    font-size: 16px;
    box-shadow: var(box-shadow);
    border-radius: 17px 10px 5px 10px;
}

.prevnext {
    display: flex;
    justify-content: center;
    position: relative;
    top: 3rem;
    gap: 1rem;
}

.prev, .next {
    cursor: pointer;
    background-color: var(--atlatszo-feher);
    color: black;
    border: none;
    font-size: 26px;
    padding: 0.2rem 3rem;
}

.prev {
    border-radius: 100px 5px 5px 100px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.next {
    border-radius: 5px 100px 100px 5px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.prev i {
    position: relative;
    left: 0.3rem;
}

.next i {
    position: relative;
    right: 0.3rem;
}

.prev:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.prev:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
}

.next:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.next:active {
    transform: scale(0.9);
    transition: transform 0.1s ease;
}

.nyil1 {
    position: relative;
    transition: left 0.1s;
}

@media only screen and (max-width: 768px) {
    .membersH1 {
        font-size: 28px;
        border-bottom: 1px solid white;
        padding-bottom: 1rem; 
    }
    .memberCsik1 {
        background-color: transparent;
    }
    .person {
        flex: 0 0 90%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}
@media only screen and (min-width: 769px) and (max-width: 900px) {
    .person {
        flex: 0 0 50%; 
    }
}
