@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrapper {
    background: #1e1e1e;
    min-height: 150vh;
}

.container {
    width: min(100%, 1000px);
    margin: 0 auto;
    padding: 2rem 20px 0;
}

.panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.part {
    display: flex;
    gap: 1.5rem;
}

.block {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #171717;
    border-radius: 50px;
}

.heading {
    background: linear-gradient(156.3deg, #6f31e1 6.22%, #6f31e2 94.29%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: screen;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    background: #6f31e2;
    border-radius: 45px;
    font-size: 1.15rem;
    width: 100%;
    text-align: center;
}

.guilds__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #272727;
    padding: 25px;
    height: fit-content;
    border-radius: 45px;
    gap: 15px;
    width: min(100%, 250px);
}

.guilds__item-name {
    font-weight: 400;
    font-size: 1.15rem;
}

.avatar,
.guilds__item-image {
    object-fit: cover;
    border-radius: 50%;
}

.avatar {
    width: 200px;
    height: 200px;
}

.guilds__item-image {
    width: 75px;
    height: 75px;
}

.guilds__grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 35px;
    padding: 35px;
    justify-content: center;
}

.project__grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 35px;
    padding: 35px;
    justify-content: center;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.languages {
    width: 100%;
}

.list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 100%;
}

.info {
    padding: 1.5rem 25px;
}

.info,
.intro,
.details {
    width: 100%;
}

.about,
.languages,
.info {
    gap: 1.05rem;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: .95rem;
}

.intro__heading {
    font-size: 2.05rem;
}

.role {
    font-size: 1.25rem;
}

.about__text {
    text-align: center;
    max-width: 300px;
    font-size: 1.15rem;
}

@media (max-width: 992px) {
    .guilds__item {
        width: calc(70vw / 2);
    }
}

@media (max-width: 768px) {
    .part {
        flex-direction: column;
    }

    .info {
        padding: 1.5rem 3.5rem;
    }

    .guilds__item {
        width: calc(65vw / 2);
    }

    .info > .list {
        flex-direction: row;
    }
}


@media (max-width: 576px) {
    .guilds__item {
        width: 100%;
    }
}