* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.container {
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile {
    text-align: center;
    color: white;
}

.avatar {
    width: 120px; /* Увеличил размер аватара */
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.status {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
}

.icon {
    width: 28px; /* Увеличил иконки соцсетей */
    height: 28px;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 20px 30px; /* Увеличил размер кнопок */
    border-radius: 30px;
    font-size: 20px; /* Увеличил шрифт кнопок */
    width: 280px; /* Увеличил ширину кнопок */
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: white;
    color: black;
}

.button-icon {
    width: 28px; /* Увеличил размер иконок на кнопках */
    height: 28px;
    margin-right: 10px;
    /* Убрал filter: invert(100%) */
}
