* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.2;
    font-weight: 400;
    color: #000;

    background-color: #EFEFF4;
    width: 100vw;
    height: 100vh;
}

#app {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    padding-bottom: 32px;
}

.container {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 32px;

    padding: 12px 16px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.h1-text {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    /* letter-spacing: -5%; */
    color: #000;
}

.text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;

    width: 100%;
    min-height: 50px;
    padding: 15px 12px;

    background-color: #007AFF;
    border-radius: 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;

    transition: background-color .3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    background-color: #409bff;
}

.heading {
    width: 100%;
    height: 76px;
    padding: 0 8px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* display: grid;
    grid-template-columns: 1fr 2fr 1fr; */
    align-items: center;
    gap: 24px;

    border-bottom: rgba(0, 0, 0, .12) 1px solid;
}

.heading__user-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.heading__avatar {
    width: 52px;
    height: 52px;
    border-radius: 42px;

    background-color: grey;
}

.heading__user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.heading__extra {
    font-size: 10px;
    line-height: 1;
}

.heading__user-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.heading__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    /* border-radius: 100%;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .12); */
}

.heading__label {
    align-self: center;

    font-size: 20px;
    font-weight: 600;
    text-align: center;
}