body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f2f5;
    align-items: center; /* Центрируем содержимое body по горизонтали */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 10px 140px;
    height: 60px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.header .left {
    display: flex;
    flex-direction: row; /* Горизонтально */
    align-items: center;
    gap: 20px; /* Отступ между логотипом и ссылками */
}

.header .left img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.header .left a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap; /* Чтобы текст "Meetlook" не переносился */
    text-decoration: none;
}

.header .right {
    display: flex;
    flex-direction: row-reverse; /* Горизонтально */
    align-items: center;
    gap: 20px; /* Отступ между ссылками */
}

.header .right a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
    text-decoration: none;
}
.avatar{
    width: 5vh;
    height: 5vh;
    border-radius: 3px;
}