* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.5;
}

::selection {
    background-color: #dcdcdc;
    color: #1d1d1f;
}

body {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: safe center;
    justify-content: safe center;
    height: 100vh;
    overflow: hidden;
}

.separate {
    width: 100%;
    padding: 20px 0;
}

.card {
    width: 500px;
    height: 100px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 16px;
    overflow: hidden;
}

.avatar {
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: url(../static/avater_logo2x.png);
    background-position: center;
    background-size: cover;
    margin: 0 20px;
    transition: .2s;
    cursor: pointer;
}

.avatar:hover {
    transform: scale(.98);
    filter: brightness(0.8);
}

.info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    margin-right: 20px;
}

.name {
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #1d1d1f;
}

.desc {
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #1d1d1f;
}

.subscribe {
    user-select: none;
    cursor: pointer;
    font-size: 16px;
    width: 20%;
    line-height: 30px;
    margin: 0 auto;
    background-color: #f5b120;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    transition: .2s;
}

.subscribe:hover {
    filter: brightness(0.9);
}