.container {
    background-color: #fff;
    padding-top: 30px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #ccc;
    margin: 40px auto 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s;
    cursor: pointer;
}

.name {
    display: inline-block;
    text-align: center;
    font-size: 22px;
    margin-top: 10px;
    position: relative;
    cursor: pointer;
}

.name::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 3px;
    background-color: #1b77f2;
    transition: width .3s linear;
}

.name:hover::after {
    width: 40%;
}

.avatar img:hover {
    transform: rotate(290deg);
}

.text {
    color: rgba(0, 0, 0, .7);
    font-size: 17px;
    line-height: 26px;
    margin-top: 30px;
}

.view_btn {
    margin-top: 30px;
    border-radius: 30px;
    padding: 10px 35px;
    border: 2px solid #1b77f2;
    font-weight: bold;
    font-size: 18px;
}

.view_btn:hover {
    background-color: #1b77f2;
    color: #fff;
}

@media screen and (max-width:600px) {
    .text {
        font-size: 14px;
        padding: 0 10px;
    }
}