.INDEX {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.INDEX_ITEM {
    color: #3c3c3c;
    font-weight: bold;
}

.INTRO-CONTAINER {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.BASIC-INFO-CONTAINER {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
    .INTRO-CONTAINER {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .BASIC-INFO-CONTAINER {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    .AVATAR-CONTAINER {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .AVATAR {
        width: 10rem;
        height: 10rem;
    }
}