.member-profile {
    width: 50%;
    margin: 0 auto;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}
.profile-flex {
    display: flex;
    justify-content: center;
    gap: 10%;
    padding-bottom: 25px;
    border-bottom: 1px solid black;
    margin-top: 50px;
}
.profile-x {
    width: 33px;
    height: auto;
}
.profile-twitch {
    width: 33px;
    height: auto;
    position: relative;
}
.profile-youtube {
    width: 39px;
    height: auto;
}

.profile-img {
    width: 30%;
}

.profile-img img {
    width: 100%;
    height: auto;
}

.profile-top .affiliation {
    display: flex;
    gap: 20px;
    font-weight: 600;
}

.profile-name-content h2 {
    font-size: 36px;
}
.profile-name-content p {
    margin-left: 2px;
}

.profile-top {
    display: flex;
    flex-direction: column;
    gap: 6%;
    justify-content: center;
}

.profile-top .links {
    gap: 15px;
    display: flex;
    align-items: center;
}

.msg-short {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.msg-long {
    font-weight: 400;
}

.profile-bottom {
    width: 70%;
    margin: 40px auto 0 auto;
}

@media screen and (max-width: 1350px) {
    .member-profile {
        width: 85%;
    }
    .profile-name-content h2 {
        font-size: 24px;
    }
    .msg-short {
        font-size: 24px;
    }
}
@media screen and (max-width: 720px) {
    .profile-x {
        width: 25px;
        height: auto;
    }
    .profile-twitch {
        width: 25px;
        height: auto;
    }
    .profile-youtube {
        width: 31px;
        height: auto;
    }
    .profile-top {
        row-gap: 5px;
    }
    .profile-flex {
        gap: 2%;
    }
}